dslibris/azure-pipelines.yml
2024-02-29 14:50:43 -05:00

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'