diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-05-04 11:44:59 +0200 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-05-04 11:44:59 +0200 |
commit | 949161e097c0eec90d6a73434efcc72b1373618f (patch) | |
tree | 01ec3a5a3e0915cbd824b3fc854dede5f98d7f9e | |
parent | 1a50ec84c5447277cb64633bb6e25ce90797ec6e (diff) |
Indent Yaml file and remove cleaning
-rw-r--r-- | .travis.yml | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml index e9224046d..1c1114e49 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,31 +1,30 @@ language: generic os: -- linux -sudo: false + - linux dist: trusty +sudo: false env: global: - - DEVKITARM=$HOME/devkitARM + - DEVKITARM=$HOME/devkitARM addons: apt: packages: - - gcc-multilib - - linux-libc-dev + - gcc-multilib + - linux-libc-dev cache: apt: true install: -- cd $HOME -- travis_retry wget http://download.sourceforge.net/devkitpro/devkitARM_r46-x86_64-linux.tar.bz2 -- tar xf devkitARM*.tar.bz2 -- travis_retry git clone https://github.com/YamaArashi/agbcc.git -- cd agbcc && ./build.sh && ./install.sh $TRAVIS_BUILD_DIR + - cd $HOME + - travis_retry wget http://download.sourceforge.net/devkitpro/devkitARM_r46-x86_64-linux.tar.bz2 + - tar xf devkitARM*.tar.bz2 + - travis_retry git clone https://github.com/YamaArashi/agbcc.git + - cd agbcc && ./build.sh && ./install.sh $TRAVIS_BUILD_DIR script: -- cd $TRAVIS_BUILD_DIR -- travis_retry wget -q $BASEROM_URL -O baserom.gba -- ./build_tools.sh -- make tidy && make -j2 compare_ruby -- make tidy && make -j2 compare_ruby_rev1 -- make tidy && make -j2 compare_ruby_rev2 -- make tidy && make -j2 compare_sapphire -- make tidy && make -j2 compare_sapphire_rev1 -- make tidy && make -j2 compare_sapphire_rev2 + - cd $TRAVIS_BUILD_DIR + - ./build_tools.sh + - make -j2 compare_ruby + - make -j2 compare_ruby_rev1 + - make -j2 compare_ruby_rev2 + - make -j2 compare_sapphire + - make -j2 compare_sapphire_rev1 + - make -j2 compare_sapphire_rev2 |