diff options
author | martmists <mail@martmists.com> | 2020-04-22 04:02:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 04:02:27 +0200 |
commit | b4eaf3c0d81c1b4897640607aba5acc170ffcde7 (patch) | |
tree | b4ca0096a595688676997ddd07cb45aef3cabe55 | |
parent | 158e3c19b27a31ca11c1bd158fe74f2a45967dc1 (diff) | |
parent | c0ad5d7c15b1f50d20bcff0f031a4ea71812becc (diff) |
Merge pull request #20 from martmists/fix-travis
Allow travis to run on PRs
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 70e86dc2..867a5198 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,11 @@ language: c install: - sudo apt update - sudo apt install binutils-arm-none-eabi wine - - wget $TOOLS_URL + # 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 - unzip mwccarm.zip - mv mwccarm tools - - wget $ROM_URL - - mv "baserom.nds?dl=1" baserom.nds script: - export LM_LICENSE_FILE="$(pwd)/tools/mwccarm/license.dat" |