www

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

commit e2fe727b4ff84f0bb0212a6c103f0e0e2c955a4c
parent 415cdc610bdf8b56d03c55fe025872e3a0262be2
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Thu,  1 Jun 2017 14:56:07 +0200

Do not build & install the published version, as it takes too long.

Diffstat:
M.travis.yml | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -31,12 +31,13 @@ script: # # ##################################################################################################### -- mv ~/.racket ~/.racket-local-install -- echo -- echo Installing from the main repository, to catch eventual dependency issues on the master branch. -- echo -- raco pkg install --deps search-auto -j 2 "$(basename "$TRAVIS_BUILD_DIR")" -- raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")" -- 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")" +# This actually takes too long, and the build times out sometimes. +#- mv ~/.racket ~/.racket-local-install +#- echo +#- echo Installing from the main repository, to catch eventual dependency issues on the master branch. +#- echo +#- raco pkg install --deps search-auto -j 2 "$(basename "$TRAVIS_BUILD_DIR")" +#- raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")" +#- 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")" #####################################################################################################