diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-04-29 20:08:09 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-04-29 20:08:09 -0400 |
commit | 2a17eb5b7f088ce93f9c64d5b46ad019d057eab6 (patch) | |
tree | 0049f40f1a6a3300bec2a1930b3aabefe3222d0d | |
parent | b6ca8e20c4a631b9deef043f85bedf1fa3bdbd5f (diff) |
Travis
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 867a5198..61a9a4d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,22 @@ -dist: xenial - +dist: bionic +sudo: false language: c - +apt: + - gcc-multilib + - linux-libc-dev + - binutils-arm-none-eabi + - wine install: - - sudo apt update - - sudo apt install binutils-arm-none-eabi wine # These files are only accessible from Travis CI IP Addresses to prevent piracy. - wget http://private.martmists.com/mwccarm.zip - wget http://private.martmists.com/baserom.nds + - wget http://private.martmists.com/nitro.zip - unzip mwccarm.zip - mv mwccarm tools + - unzip nitro.zip + - mv Nitro\ SDK\ 3.0/tools/bin tools + - mv Nitro\ SDK\ 3.0/include/nitro/specfiles/ARM7-TS.lcf.template arm7 + - mv Nitro\ SDK\ 3.0/include/nitro/specfiles/ARM9-TS.lcf.template arm9 script: - export LM_LICENSE_FILE="$(pwd)/tools/mwccarm/license.dat" |