diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-27 11:15:07 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-27 11:20:23 -0400 |
commit | 9b0c45e90ad535f5b6e59a5c071a791b29d00a5b (patch) | |
tree | cce831dd1c8d6e2e5a5f5505da5f77853979b552 | |
parent | ba11b17f362eda7fee7c05cbc8ff3d811b2ea8fe (diff) |
Travis workaround to download nitro sdk safely
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index f0350e79..bf1e6dac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,19 +12,21 @@ addons: - binutils-arm-none-eabi - wine32 - wine-stable - - jq cache: apt: true install: # These files are only accessible from Travis CI IP Addresses to prevent piracy. + - mkdir -p $HOME/download + - pushd $HOME/download - wget http://private.martmists.com/mwccarm.zip - wget http://private.martmists.com/nitro.tar.gz - unzip mwccarm.zip - - mv mwccarm tools - - tar xzvf nitro.tar.gz - - mv NitroSDK-3_2-060901/tools/bin tools - - mv NitroSDK-3_2-060901/include/nitro/specfiles/ARM7-TS.lcf.template arm7 - - mv NitroSDK-3_2-060901/include/nitro/specfiles/ARM9-TS.lcf.template arm9 + - mv mwccarm $TRAVIS_BUILD_DIR/tools + - tar xzf nitro.tar.gz + - mv tools/bin $TRAVIS_BUILD_DIR/tools + - mv include/nitro/specfiles/ARM7-TS.lcf.template $TRAVIS_BUILD_DIR/arm7 + - mv include/nitro/specfiles/ARM9-TS.lcf.template $TRAVIS_BUILD_DIR/arm9 + - popd script: - make |