This repository was archived by the owner on Sep 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 15
15
- secure : X7CNmOMemAJ9Jqrsmv6MXyeh8n8TIL5CKzE9LYsZUbsyKo0l5CyyysJq0y/AbpQS6awsSv2qP/cZ/kand6r6z0wMFbUcxa4HjMZEfRwv3sGtwj1OKJko/GvjcZQzD54FtHy1NU7wR0mYhAlE5IwH7f8bMa/nUiijgD/TOCTtKH8=
16
16
matrix :
17
17
- NG_VERSION=1.5
18
+ - NG_VERSION=1.6
18
19
- NG_VERSION=snapshot
20
+ - MODE=saucelabs_required
19
21
20
22
matrix :
21
23
fast_finish : true
Original file line number Diff line number Diff line change 18
18
"SL_FIREFOX" : {
19
19
"base" : " SauceLabs" ,
20
20
"browserName" : " firefox" ,
21
- "platform" : " Windows 10" ,
22
- "version" : " latest-1"
21
+ "version" : " latest"
23
22
},
24
23
"SL_FIREFOXBETA" : {
25
24
"base" : " SauceLabs" ,
83
82
"base" : " SauceLabs" ,
84
83
"browserName" : " internet explorer" ,
85
84
"platform" : " Windows 10" ,
86
- "version" : " 11"
85
+ "version" : " 11.103 "
87
86
},
88
87
"SL_EDGE" : {
89
88
"base" : " SauceLabs" ,
151
150
"os" : " OS X" ,
152
151
"os_version" : " El Capitan"
153
152
},
153
+ "BS_SAFARI10" : {
154
+ "base" : " BrowserStack" ,
155
+ "browser" : " safari" ,
156
+ "os" : " OS X" ,
157
+ "os_version" : " Sierra"
158
+ },
154
159
"BS_IOS7" : {
155
160
"base" : " BrowserStack" ,
156
161
"device" : " iPhone 5S" ,
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # Terminate the execution if anything fails in the pipeline.
4
- set -e
3
+ # Enable tracing and Terminate the execution if anything fails in the pipeline.
4
+ set -xe
5
5
6
6
# Ensure that scripts will run from project dir.
7
7
cd $( dirname $0 ) /..
8
8
9
+ # This is the default set of browsers to use on the CI server unless overridden via env variable
10
+ if [[ -z " $BROWSERS " ]]
11
+ then
12
+ BROWSERS=" Chrome,Firefox"
13
+ fi
14
+
9
15
# When Travis CI specifies an Angular version, try to install those for tests.
10
16
if [[ -n " $NG_VERSION " ]]; then
11
17
./scripts/fetch-angular-version.sh " $NG_VERSION "
@@ -24,4 +30,4 @@ gulp build
24
30
gulp karma --config=config/karma-sauce.conf.js --browsers=$BROWSER --reporters=' dots'
25
31
26
32
# Shutdown the tunnel
27
- ./scripts/sauce/stop-tunnel.sh
33
+ ./scripts/sauce/stop-tunnel.sh
You can’t perform that action at this time.
0 commit comments