mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-23 03:30:02 +08:00
Building the G3 commits occupies a lot of time, and these branches have already been tested. Closes #6328
36 lines
850 B
YAML
36 lines
850 B
YAML
language: node_js
|
|
node_js:
|
|
- 0.10
|
|
|
|
branches:
|
|
except:
|
|
- /^g3_.*$/
|
|
|
|
env:
|
|
matrix:
|
|
- JOB=unit
|
|
- JOB=e2e BROWSER=chrome JQVERSION=jqlite
|
|
- JOB=e2e BROWSER=firefox JQVERSION=jqlite
|
|
# - JOB=e2e BROWSER=safari JQVERSION=jqlite
|
|
# - JOB=e2e BROWSER=chrome JQVERSION=jquery
|
|
# - JOB=e2e BROWSER=firefox JQVERSION=jquery
|
|
# - JOB=e2e BROWSER=safari JQVERSION=jquery
|
|
global:
|
|
- SAUCE_USERNAME=angular-ci
|
|
- SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987
|
|
- LOGS_DIR=/tmp/angular-build/logs
|
|
- BROWSER_PROVIDER_READY_FILE=/tmp/sauce-connect-ready
|
|
|
|
before_script:
|
|
- mkdir -p $LOGS_DIR
|
|
- ./lib/sauce/sauce_connect_setup.sh
|
|
- npm install -g grunt-cli
|
|
- grunt package
|
|
- ./scripts/travis/wait_for_browser_provider.sh
|
|
|
|
script:
|
|
- ./scripts/travis/build.sh
|
|
|
|
after_script:
|
|
- ./scripts/travis/print_logs.sh
|