commit 805a2e1d80555cbb8f4723ce2636cfecd416149c parent 4a09246307bdf0a2d745efba75049d3af424c457 Author: Georges Dupéron <georges.duperon@gmail.com> Date: Wed, 26 Apr 2017 01:29:11 +0200 Don't build on versions older than 6.4, there is a transitive dependency on scribble/example Diffstat:
| M | .travis.yml | | | 25 | ++++++++++--------------- |
1 file changed, 10 insertions(+), 15 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -8,18 +8,13 @@ env: - PATH="$RACKET_DIR/bin:$PATH" matrix: # RACKET_VERSION is an argument to install-racket.sh - - RACKET_VERSION=6.0 COV=false - - RACKET_VERSION=6.1 COV=false - - RACKET_VERSION=6.1.1 COV=false - - RACKET_VERSION=6.2 COV=false - - RACKET_VERSION=6.3 COV=true - - RACKET_VERSION=6.4 COV=true - - RACKET_VERSION=6.5 COV=true - - RACKET_VERSION=6.6 COV=true - - RACKET_VERSION=6.7 COV=true - - RACKET_VERSION=6.8 COV=true - - RACKET_VERSION=RELEASE COV=true - - RACKET_VERSION=HEAD COV=true + - RACKET_VERSION=6.4 + - RACKET_VERSION=6.5 + - RACKET_VERSION=6.6 + - RACKET_VERSION=6.7 + - RACKET_VERSION=6.8 + - RACKET_VERSION=RELEASE + - RACKET_VERSION=HEAD before_install: - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash @@ -30,8 +25,8 @@ install: script: - raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")" -- if $COV; then raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"; fi -- if $COV; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi -- if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi +- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")" +- raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")" +- raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true # TODO: add an option to cover to run the "outer" module too, not just the submodules. # TODO: deploy the coverage info. \ No newline at end of file