GRRLIB/.travis.yml
Crayon2000 ee94dd4dac Makefiles were changed to allow compilation on GameCube and Wii.
To compile on GameCube use this: make PLATFORM=cube clean all install
If PLATFORM is not specified or set to anything else it will compile for Wii.
2015-11-03 09:14:13 -05:00

20 lines
434 B
YAML

language: c
os:
- linux
env:
global:
- DEVKITPRO=$HOME/devkitPro
- DEVKITPPC=${DEVKITPRO}/devkitPPC
before_install:
- wget http://sourceforge.net/projects/devkitpro/files/Automated%20Installer/devkitPPCupdate.pl
install:
- sudo perl devkitPPCupdate.pl
script:
- cd GRRLIB && sudo -E make clean all install && cd ..
- cd examples && make && cd ..
- cd GRRLIB && sudo -E make PLATFORM=cube clean all && cd ..