2016-12-05 11:40:27 +11:00
|
|
|
sudo: false
|
2016-02-19 11:27:33 +02:00
|
|
|
dist: trusty
|
2012-04-19 15:32:41 -07:00
|
|
|
language: node_js
|
2014-09-01 10:18:49 +02:00
|
|
|
git:
|
2016-12-05 11:40:27 +11:00
|
|
|
depth: 3
|
2012-04-19 15:32:41 -07:00
|
|
|
node_js:
|
2015-09-20 12:10:42 +03:00
|
|
|
- "4"
|
2017-07-15 06:17:32 +00:00
|
|
|
- "8"
|
2013-12-13 03:03:15 -08:00
|
|
|
before_install:
|
2017-07-15 06:17:32 +00:00
|
|
|
- if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi
|
2016-12-05 11:40:27 +11:00
|
|
|
- "export TRAVIS_COMMIT_MSG=\"`git log --format=%B --no-merges -n 1`\""
|
2017-04-19 21:59:12 +10:00
|
|
|
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip browser\]'; export TWBS_DO_BROWSER=$?; true
|
2013-12-13 03:03:15 -08:00
|
|
|
install:
|
2016-12-05 11:40:27 +11:00
|
|
|
- bundle install --deployment --jobs=3 --retry=3
|
2015-08-19 13:08:26 -07:00
|
|
|
- npm install
|
2017-04-19 21:59:12 +10:00
|
|
|
script:
|
|
|
|
- npm test
|
|
|
|
- if [ "$TWBS_TEST" = browser -a "$SAUCE_ACCESS_KEY" ]; then npm run js-test-cloud; fi
|
2016-12-05 11:40:27 +11:00
|
|
|
after_success:
|
2017-04-19 21:59:12 +10:00
|
|
|
- if [ "$TRAVIS_REPO_SLUG" = twbs-savage/bootstrap ]; then npm run docs-upload-preview; fi
|
2016-01-14 14:14:34 -08:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
- vendor/bundle
|
2013-07-30 22:11:17 +05:30
|
|
|
env:
|
2016-12-05 11:40:27 +11:00
|
|
|
- TWBS_TEST=core
|
2017-04-19 21:59:12 +10:00
|
|
|
- TWBS_TEST=browser
|
2013-12-14 19:09:44 -08:00
|
|
|
matrix:
|
2015-11-12 00:53:49 -08:00
|
|
|
exclude:
|
|
|
|
- node_js: "4"
|
2017-04-19 21:59:12 +10:00
|
|
|
env: TWBS_TEST=browser
|
2014-05-07 23:37:41 -07:00
|
|
|
notifications:
|
|
|
|
slack: heybb:iz4wwosL0N0EdaX1gvgkU0NH
|
2014-11-19 14:43:45 -08:00
|
|
|
webhooks:
|
|
|
|
- http://savage.twbsapps.com/savage/travis
|