www

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

commit 44c83a919cd7c13021fde3026d3a8a1134da3df6
parent 6b282c7b3614bf0b28cccf066dbc93c934ed8e47
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Wed, 21 Jun 2017 19:27:53 +0200

…

Diffstat:
M.travis.yml | 12+++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -11,7 +11,7 @@ env: cache: directories: - - $HOME/.racket + - ~/.racket before_install: - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash @@ -21,11 +21,13 @@ jobs: include: - stage: phase1 install: + - mv ~/.racket ~/.racket-discard + - mkdir ~/.racket - echo hello > ~/.racket/hello - echo "$TRAVIS_BUILD_ID" > ~/.racket/travis_build_id script: - - ls -la $HOME - - tree ~/.racket + - ls -la ~ + - find ~/.racket - stage: phase2 addons: apt: @@ -36,7 +38,7 @@ jobs: - cat ~/.racket/hello - if "$TRAVIS_BUILD_ID" != `cat ~/.racket/travis_build_id`; then travis_terminate 1; fi script: - - ls -la $HOME - - tree ~/.racket + - ls -la ~ + - find ~/.racket - mv ~/.racket ~/.racket-discard - mkdir ~/.racket # clear the cache