mirror of
https://github.com/rhaleblian/dslibris.git
synced 2025-06-18 08:45:40 -04:00
22 lines
508 B
YAML
22 lines
508 B
YAML
# Starter pipeline
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
# Add steps that build, run tests, deploy, and more:
|
|
# https://aka.ms/yaml
|
|
|
|
trigger:
|
|
- main
|
|
- dev
|
|
|
|
pool:
|
|
vmImage: ubuntu-latest
|
|
|
|
steps:
|
|
- script: |
|
|
wget https://apt.devkitpro.org/install-devkitpro-pacman
|
|
chmod +x ./install-devkitpro-pacman
|
|
sudo ./install-devkitpro-pacman
|
|
displayName: 'Install devkitpro pacman'
|
|
|
|
- script: sudo dkp-pacman -S nds-dev
|
|
displayName: 'Install NDS toolchain'
|