blob: b2dca34ef9448e79099b8bbfc1ce6d62f4eadfd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
dist: bionic
os: linux
language: c
env:
global:
- LM_LICENSE_FILE="$TRAVIS_BUILD_DIR/tools/mwccarm/license.dat"
addons:
apt:
packages:
- gcc-multilib
- linux-libc-dev
- binutils-arm-none-eabi
- wine32
- wine-stable
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 $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
- make pearl
notifications:
email: false
after_success:
- .travis/calcrom/webhook.sh pokediamond
|