Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-05-19 02:50:07 +0400
committerChris Rebert <code@rebertia.com>2014-05-19 04:20:54 +0400
commitdf9f576583a082ad53afe4d324581c1c92779b23 (patch)
treedbc4d6ea71afbc83a8a819d4d89da323766f6ba2 /.travis.yml
parent1da03a1e734c4b4e5666377045766e1417d1f837 (diff)
Travis: skip RubyGems install+cache when TWBS_DO_VALIDATOR=0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 59ef5fe779..6a778cf747 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,10 +12,10 @@ before_install:
install:
- time npm install -g grunt-cli
- ./test-infra/s3_cache.py download npm-modules
- - if [ "$TWBS_TEST" = validate-html ]; then ./test-infra/s3_cache.py download rubygems; fi
+ - if [ "$TWBS_TEST" = validate-html ] && [ $TWBS_DO_VALIDATOR -ne 0 ]; then ./test-infra/s3_cache.py download rubygems; fi
after_script:
- if [ "$TWBS_TEST" = core ]; then ./test-infra/s3_cache.py upload npm-modules; fi
- - if [ "$TWBS_TEST" = validate-html ]; then ./test-infra/s3_cache.py upload rubygems; fi
+ - if [ "$TWBS_TEST" = validate-html ] && [ $TWBS_DO_VALIDATOR -ne 0 ]; then ./test-infra/s3_cache.py upload rubygems; fi
env:
global:
- JEKYLL_VERSION: 1.5.0