This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ branches:
1515env :
1616 matrix :
1717 - JOB=ci-checks
18- - JOB=unit-core
19- - JOB=unit-jquery
20- - JOB=docs-app
21- - JOB=e2e TEST_TARGET=jqlite
22- - JOB=e2e TEST_TARGET=jquery
18+ - JOB=unit-core BROWSER_PROVIDER=saucelabs
19+ - JOB=unit-jquery BROWSER_PROVIDER=saucelabs
20+ - JOB=docs-app BROWSER_PROVIDER=saucelabs
21+ - JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=saucelabs
22+ - JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=saucelabs
2323 global :
2424 - SAUCE_USERNAME=angular-ci
2525 - SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ if [ "$JOB" != "ci-checks" ]; then
1212fi
1313
1414# ci-checks and unit tests do not run against the packaged code
15- if [ " $JOB " != " ci-checks" ] && [ " $JOB " != " unit" ]; then
15+ if [[ " $JOB " != " ci-checks" ]] && [[ " $JOB " != unit- * ] ]; then
1616 grunt package
1717fi
1818
1919# unit runs the docs tests too which need a built version of the code
20- if [ " $JOB " = " unit" ]; then
20+ if [[ " $JOB " = unit- * ] ]; then
2121 grunt bower
2222 grunt validate-angular-files
2323 grunt build
Original file line number Diff line number Diff line change 55export BROWSER_STACK_ACCESS_KEY
66export SAUCE_ACCESS_KEY
77
8- BROWSER_STACK_ACCESS_KEY=$( echo BROWSER_STACK_ACCESS_KEY | rev)
9- SAUCE_ACCESS_KEY=$( echo SAUCE_ACCESS_KEY | rev)
8+ BROWSER_STACK_ACCESS_KEY=$( echo " $ BROWSER_STACK_ACCESS_KEY" | rev)
9+ SAUCE_ACCESS_KEY=$( echo " $ SAUCE_ACCESS_KEY" | rev)
1010
1111BROWSERS=" SL_Chrome,SL_Chrome-1,\
12- SL_Firefox,SL_Firefox-1,\
13- SL_Safari_8,SL_Safari_9,\
14- SL_iOS,\
15- SL_IE_9,SL_IE_10,SL_IE_11,\
16- SL_EDGE,SL_EDGE-1"
12+ SL_Firefox,SL_Firefox-1,\
13+ SL_Safari_8,SL_Safari_9,\
14+ SL_iOS,\
15+ SL_IE_9,SL_IE_10,SL_IE_11,\
16+ SL_EDGE,SL_EDGE-1"
1717
1818case " $JOB " in
1919 " ci-checks" )
@@ -29,7 +29,7 @@ case "$JOB" in
2929 ;;
3030 " unit-core" )
3131 grunt test:promises-aplus
32- grunt test:unit --browsers=" $BROWSERS " --reporters=spec
32+ grunt test:jqlite --browsers=" $BROWSERS " --reporters=spec
3333 grunt test:modules --browsers=" $BROWSERS " --reporters=spec
3434 ;;
3535 " unit-jquery" )
You can’t perform that action at this time.
0 commit comments