diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-05-04 07:39:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 07:39:38 -0700 |
commit | 418aaa857e68246771ed0db8417e71d00ecd164c (patch) | |
tree | 01ec3a5a3e0915cbd824b3fc854dede5f98d7f9e | |
parent | d7284694ec3543b84074f52938ea5e6666e17599 (diff) | |
parent | 949161e097c0eec90d6a73434efcc72b1373618f (diff) |
Merge pull request #258 from marijnvdwerf/travis-ci
Set up Travis CI
-rw-r--r-- | .travis.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..1c1114e49 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +language: generic +os: + - linux +dist: trusty +sudo: false +env: + global: + - DEVKITARM=$HOME/devkitARM +addons: + apt: + packages: + - 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 +script: + - 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 |