diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-15 11:39:28 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-15 11:39:28 -0500 |
commit | a79b21ee4330bba7a7db8326184b468932fbacad (patch) | |
tree | 5443d4dea03f3f72c9494d9d20f2390ce3715016 | |
parent | feeb96f20fc5195248b90bd09405f43eeb19b0a8 (diff) |
Fix .travis.yml
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 9897e37b3..f4fc29652 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: generic dist: bionic sudo: false +env: + global: + - DEVKITPRO=$HOME + - DEVKITARM=$DEVKITPRO/devkitARM addons: apt: packages: @@ -11,6 +15,8 @@ cache: apt: true install: - pushd $HOME + - travis_retry wget https://github.com/devkitPro/buildscripts/releases/download/devkitARM_r52/devkitARM_r52-linux.tar.xz + - tar xJf devkitARM*.tar.xz - travis_retry git clone https://github.com/pret/agbcc.git - cd agbcc && sh build.sh && sh install.sh $TRAVIS_BUILD_DIR - popd |