2014-09-29 17:20:23 -04:00
|
|
|
language: node_js
|
2014-12-22 20:50:10 -05:00
|
|
|
sudo: false
|
2014-09-29 17:20:23 -04:00
|
|
|
node_js:
|
2016-09-19 14:37:44 -04:00
|
|
|
- '6.6.0'
|
2015-04-16 00:37:13 -04:00
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
addons:
|
|
|
|
# firefox: "38.0"
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
# needed to install g++ that is used by npms's native modules
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
|
2015-07-23 16:51:57 -04:00
|
|
|
branches:
|
|
|
|
except:
|
2016-01-15 16:36:06 -05:00
|
|
|
- g3_v2_0
|
2015-07-23 16:51:57 -04:00
|
|
|
|
2015-04-16 00:37:13 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
2016-04-28 20:50:03 -04:00
|
|
|
- ./node_modules
|
|
|
|
- ./.chrome/chromium
|
2016-02-08 16:23:12 -05:00
|
|
|
|
2014-09-29 17:20:23 -04:00
|
|
|
env:
|
2014-10-28 06:51:00 -04:00
|
|
|
global:
|
2016-05-12 18:08:28 -04:00
|
|
|
# GITHUB_TOKEN_ANGULAR
|
|
|
|
# This is needed for the e2e Travis matrix task to publish packages to github for continuous packages delivery.
|
|
|
|
- secure: "fq/U7VDMWO8O8SnAQkdbkoSe2X92PVqg4d044HmRYVmcf6YbO48+xeGJ8yOk0pCBwl3ISO4Q2ot0x546kxfiYBuHkZetlngZxZCtQiFT9kyId8ZKcYdXaIW9OVdw3Gh3tQyUwDucfkVhqcs52D6NZjyE2aWZ4/d1V4kWRO/LMgo="
|
2015-02-12 18:00:43 -05:00
|
|
|
matrix:
|
2015-10-30 10:34:48 -04:00
|
|
|
# Order: a slower build first, so that we don't occupy an idle travis worker waiting for others to complete.
|
2016-04-28 20:50:03 -04:00
|
|
|
- CI_MODE=js
|
2016-05-02 01:54:19 -04:00
|
|
|
- CI_MODE=e2e
|
2016-04-28 20:50:03 -04:00
|
|
|
- CI_MODE=saucelabs_required
|
|
|
|
- CI_MODE=browserstack_required
|
2016-06-09 18:21:17 -04:00
|
|
|
- CI_MODE=saucelabs_optional
|
|
|
|
- CI_MODE=browserstack_optional
|
2016-05-09 19:47:26 -04:00
|
|
|
|
|
|
|
matrix:
|
2016-08-12 02:03:28 -04:00
|
|
|
fast_finish: true
|
2016-05-09 19:47:26 -04:00
|
|
|
allow_failures:
|
|
|
|
- env: "CI_MODE=saucelabs_optional"
|
|
|
|
- env: "CI_MODE=browserstack_optional"
|
2015-06-02 17:09:32 -04:00
|
|
|
|
2015-04-16 00:32:39 -04:00
|
|
|
install:
|
2016-04-28 20:50:03 -04:00
|
|
|
- ./scripts/ci-lite/install.sh
|
2015-04-16 00:32:39 -04:00
|
|
|
|
2014-09-29 17:20:23 -04:00
|
|
|
script:
|
2016-04-28 20:50:03 -04:00
|
|
|
- ./scripts/ci-lite/build.sh && ./scripts/ci-lite/test.sh
|
2015-04-16 00:32:39 -04:00
|
|
|
|
2014-09-29 17:20:23 -04:00
|
|
|
after_script:
|
2016-04-28 20:50:03 -04:00
|
|
|
- ./scripts/ci-lite/cleanup.sh
|