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:
authorBardi Harborow <bardi@bardiharborow.com>2016-12-05 03:40:27 +0300
committerMark Otto <markd.otto@gmail.com>2016-12-05 03:40:27 +0300
commit5a19d4870537ca85ba38beeb7eabe80858417b72 (patch)
tree8c8740ae969041dbc215e879ef04cedf4a613f8d /.travis.yml
parent4c615573ad6abcf8ad1fac71b183161860f2fd50 (diff)
Travis build infrastructure refresh. (#21108)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml26
1 files changed, 10 insertions, 16 deletions
diff --git a/.travis.yml b/.travis.yml
index dee6062c12..238a6c0db4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,39 +1,33 @@
-sudo: required
+sudo: false
dist: trusty
language: node_js
git:
- depth: 10
+ depth: 3
node_js:
- "4"
- "6"
before_install:
- # Remove ./node_modules/.bin from PATH so node-which doesn't replace Unix which and cause RVM to barf. See https://github.com/travis-ci/travis-ci/issues/5092
- - export PATH=$(python -c 'from sys import argv;from collections import OrderedDict as od;print(":".join(od((p,None) for p in argv[1].split(":") if p.startswith("/")).keys()))' "$PATH")
- - rvm install 2.2
- - rvm use 2.2 --fuzzy
- - npm install -g npm@3
- - "export TRAVIS_COMMIT_MSG=\"$(git log --format=%B --no-merges -n 1)\""
+ - if [[ `npm -v` != 3* ]]; then npm install -g npm@3; fi
+ - "export TRAVIS_COMMIT_MSG=\"`git log --format=%B --no-merges -n 1`\""
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip validator\]'; export TWBS_DO_VALIDATOR=$?; true
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip sauce\]'; export TWBS_DO_SAUCE=$?; true
- if [ "$TRAVIS_REPO_SLUG" = twbs-savage/bootstrap ]; then export TWBS_DO_VALIDATOR=0; fi
install:
- - bundle install --deployment --jobs=3
+ - bundle install --deployment --jobs=3 --retry=3
- cp grunt/npm-shrinkwrap.json ./
- npm install
+after_success:
+ - if [ "$TWBS_TEST" = sauce-js-unit ]; then grunt/upload-preview.sh; fi
cache:
directories:
- node_modules
- vendor/bundle
- "$HOME/google-cloud-sdk"
env:
- global:
- - NPM_CONFIG_PROGRESS="false"
- matrix:
- - TWBS_TEST=core
- - TWBS_TEST=validate-html
- - TWBS_TEST=sauce-js-unit
+ - TWBS_TEST=core
+ - TWBS_TEST=validate-html
+ - TWBS_TEST=sauce-js-unit
matrix:
- fast_finish: true
exclude:
- node_js: "4"
env: TWBS_TEST=validate-html