www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 5f800abac1b1180cbf3c506615407c5b62a3b7af
parent 1ae3d0749285e56cf7f1b99521aef1e8933f5657
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Fri, 21 Jul 2017 03:35:36 +0200

Fix .travis.yml [fastbuild]

Diffstat:
M.travis.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -21,7 +21,7 @@ jobs: - stage: phase1 install: # If [fastbuild] is on, skip directly to stage 2. - - if test -e ~/.racket/travis_build_id && echo "$TRAVIS_COMMIT_MESSAGE" | grep -q -F "[fastbuild]"; then echo "$TRAVIS_BUILD_ID" && echo "$TRAVIS_BUILD_ID" > ~/.racket/travis_build_id && travis_terminate 0; fi + - if test -e ~/.racket/travis_build_id && echo "$TRAVIS_COMMIT_MESSAGE" | grep -q -F "[fastbuild]"; then echo "$TRAVIS_BUILD_ID" && echo "fastbuild" > ~/.racket/travis_build_id && travis_terminate 0; fi - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash # - if $COV; then raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi # or cover-coveralls - mv ~/.racket ~/.racket-discard @@ -49,7 +49,7 @@ jobs: - latex-xcolor install: - if echo "$TRAVIS_COMMIT_MESSAGE" | grep -q -F "[keepcache]"; then cp -ai ~/.racket ~/.racket-stage1; fi - - if test "$TRAVIS_BUILD_ID" != `cat ~/.racket/travis_build_id`; then travis_terminate 1; fi + - if test "$TRAVIS_BUILD_ID" != `cat ~/.racket/travis_build_id` && (test "fastbuild" != `cat ~/.racket/travis_build_id` || (echo "$TRAVIS_COMMIT_MESSAGE" | grep -q -F "[fastbuild]")); then travis_terminate 1; fi - rm -f ~/.racket/travis_build_id - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash # - if $COV; then raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi # or cover-coveralls