commit 81e7393d0aa85088d6fcb6c35e7c8bbb68b0076c parent f7782f3bf15047614d0ae2deb0e94c4a65ed807f Author: Alex Knauth <alexander@knauth.org> Date: Tue, 23 Jun 2015 13:55:10 -0400 Update .travis.yml Diffstat:
| M | .travis.yml | | | 27 | +++++++++++++++++---------- |
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -1,22 +1,29 @@ -language: racket +language: c + +sudo: false env: - - RACKET_VERSION=6.0.1 - - RACKET_VERSION=6.1 - - RACKET_VERSION=6.1.1 - - RACKET_VERSION=HEAD + global: + - RACKET_DIR=~/racket + matrix: + - RACKET_VERSION=6.0.1 + - RACKET_VERSION=6.1 + - RACKET_VERSION=6.1.1 + - RACKET_VERSION=HEAD + - RACKET_VERSION=SCOPE_SNAPSHOT before_install: -- cd .. -- git clone https://github.com/greghendershott/travis-racket.git -- cat travis-racket/install-racket.sh | bash # pipe to bash not sh! + - cd .. + - git clone https://github.com/greghendershott/travis-racket.git + - cat travis-racket/install-racket.sh | bash # pipe to bash not sh! + - export PATH="${RACKET_DIR}/bin:${PATH}" install: before_script: script: - - /usr/racket/bin/raco pkg install --deps search-auto --link kw-utils - - /usr/racket/bin/raco test -x -p kw-utils + - raco pkg install --deps search-auto --link kw-utils + - raco test -x -p kw-utils after_script: