mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-12 19:02:20 +00:00
26 lines
484 B
YAML
26 lines
484 B
YAML
language: c
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
global:
|
|
- DEVKITPRO=$HOME/devkitPro
|
|
- DEVKITPPC=${DEVKITPRO}/devkitPPC
|
|
|
|
cache:
|
|
directories:
|
|
- ${DEVKITPRO}
|
|
|
|
before_install:
|
|
- wget https://sourceforge.net/projects/devkitpro/files/Automated%20Installer/devkitPPCupdate.pl
|
|
|
|
install:
|
|
- sudo perl devkitPPCupdate.pl
|
|
|
|
script:
|
|
- (cd GRRLIB && sudo -E make clean all install)
|
|
- (cd examples && make)
|
|
- (cd GRRLIB && sudo -E make PLATFORM=cube clean all)
|