From 8c2ede35f01b47e8f3f77eade68e14ba9cab8b1e Mon Sep 17 00:00:00 2001 From: AlexKnauth Date: Sat, 20 Jun 2015 10:04:35 -0400 Subject: [PATCH] update .travis.yml --- .travis.yml | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 91799f4..c116d78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,33 @@ -language: racket +language: c + +sudo: false env: - - RACKET_VERSION=6.1.1 - - RACKET_VERSION=HEAD + global: + - RACKET_DIR=~/racket + matrix: + - RACKET_VERSION=6.1.1 + - RACKET_VERSION=HEAD + - RACKET_VERSION=SCOPE_SNAPSHOT + +matrix: + allow_failures: + - env: RACKET_VERSION=HEAD + - env: RACKET_VERSION=SCOPE_SNAPSHOT + fast_finish: true 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 afl - - /usr/racket/bin/raco test -x -p afl + - raco pkg install --deps search-auto --link afl + - raco test -x -p afl after_script: