diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-27 18:18:12 -0400 |
---|---|---|
committer | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-06-27 21:43:32 -0400 |
commit | 6a1e077d2d20904c19b80a6baa455c8c9d7ce1f1 (patch) | |
tree | 68c8dd07f1f05455b2a7cce904c3a2cca26e89f8 | |
parent | 412d3c7a920659615af70097f942e7ffe6d95a21 (diff) |
Travis builds with rgbds 0.4.0 from source
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index d3cce374..59258508 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ language: c +os: + - linux + - osx install: - |- - path="$(pwd)"; cd; - wget https://github.com/rednex/rgbds/archive/v0.3.3.tar.gz -O rgbds.tar.gz && - tar xf rgbds.tar.gz && - cd rgbds-0.3.3 && - sudo make install && - cd - && - rm -rf rgbds && - cd "$path" + ( cd + git clone -b v0.4.0 --depth=1 https://github.com/rednex/rgbds + sudo make -C rgbds install + rm -rf rgbds + ) before_script: - |- function check_status() { @@ -19,6 +19,5 @@ before_script: fi; } script: - - make -j2 - - make compare + - make -j2 compare - check_status |