diff options
author | yenatch <yenatch@gmail.com> | 2018-01-21 00:44:57 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-01-21 00:44:57 -0500 |
commit | 8ccb8a0af8cba68c4aedf840d9f3034668e28fd1 (patch) | |
tree | 4046d832d04eb6900f9db7c089bb4bc88f78bbec | |
parent | d279f50f57b7cb23d0359ac03f14232a37ef46b7 (diff) |
travis
-rw-r--r-- | .travis.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..dda07ebb4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: generic +dist: trusty +sudo: false +env: + global: + - DEVKITARM=$HOME/devkitARM +addons: + apt: + packages: + - gcc-multilib + - linux-libc-dev +cache: + apt: true +install: + - pushd $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/pret/agbcc.git + - cd agbcc && ./build.sh && ./install.sh $TRAVIS_BUILD_DIR + - popd + +matrix: + include: + - os: linux + env: _="Build" + script: + - ./build_tools.sh + - make -j2 compare |