This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 10 files changed +75
-4
lines changed
10 files changed +75
-4
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,19 @@ language: node_js
2
2
node_js :
3
3
- 0.8
4
4
5
+ env :
6
+ global :
7
+ - SAUCE_USERNAME=angular-ci
8
+ - SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987
9
+ - SAUCE_CONNECT_READY_FILE=/tmp/sauce-connect-ready
10
+
5
11
before_script :
6
- - export DISPLAY=:99.0
7
- - sh -e /etc/init.d/xvfb start
12
+ - export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
13
+ - ./lib/sauce/sauce_connect_setup.sh
8
14
- npm install -g grunt-cli
9
15
- grunt package
10
16
- grunt webserver > /dev/null &
17
+ - ./lib/sauce/sauce_connect_block.sh
11
18
12
19
script :
13
- - grunt test --browsers Firefox --reporters=dots
20
+ - grunt test --reporters dots --browsers SL_Chrome
Original file line number Diff line number Diff line change @@ -33,4 +33,6 @@ module.exports = function(config) {
33
33
suite : 'Docs'
34
34
}
35
35
} ) ;
36
+
37
+ config . sauceLabs . testName = 'AngularJS: docs' ;
36
38
} ;
Original file line number Diff line number Diff line change @@ -22,4 +22,6 @@ module.exports = function(config) {
22
22
suite : 'E2E'
23
23
}
24
24
} ) ;
25
+
26
+ config . sauceLabs . testName = 'AngularJS: e2e' ;
25
27
} ;
Original file line number Diff line number Diff line change @@ -13,4 +13,6 @@ module.exports = function(config) {
13
13
suite : 'jqLite'
14
14
}
15
15
} ) ;
16
+
17
+ config . sauceLabs . testName = 'AngularJS: jqLite' ;
16
18
} ;
Original file line number Diff line number Diff line change @@ -13,4 +13,6 @@ module.exports = function(config) {
13
13
suite : 'jQuery'
14
14
}
15
15
} ) ;
16
+
17
+ config . sauceLabs . testName = 'AngularJS: jQuery' ;
16
18
} ;
Original file line number Diff line number Diff line change @@ -12,4 +12,6 @@ module.exports = function(config) {
12
12
suite : 'modules'
13
13
}
14
14
} ) ;
15
+
16
+ config . sauceLabs . testName = 'AngularJS: modules' ;
15
17
} ;
Original file line number Diff line number Diff line change @@ -4,6 +4,20 @@ module.exports = function(config) {
4
4
autoWatch : true ,
5
5
logLevel : config . LOG_INFO ,
6
6
logColors : true ,
7
- browsers : [ 'Chrome' ]
7
+ browsers : [ 'Chrome' ] ,
8
+
9
+ // config for Travis CI
10
+ sauceLabs : {
11
+ testName : 'AngularJS' ,
12
+ startConnect : false ,
13
+ tunnelIdentifier : process . env . TRAVIS_JOB_NUMBER
14
+ } ,
15
+
16
+ customLaunchers : {
17
+ 'SL_Chrome' : {
18
+ base : 'SauceLabs' ,
19
+ browserName : 'chrome'
20
+ }
21
+ }
8
22
} ) ;
9
23
} ;
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+ # Wait for Connect to be ready before exiting
5
+ while [ ! -f $SAUCE_CONNECT_READY_FILE ]; do
6
+ sleep .5
7
+ done
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+
5
+ # Setup and start Sauce Connect for your TravisCI build
6
+ # This script requires your .travis.yml to include the following two private env variables:
7
+ # SAUCE_USERNAME
8
+ # SAUCE_ACCESS_KEY
9
+ # Follow the steps at https://saucelabs.com/opensource/travis to set that up.
10
+ #
11
+ # Curl and run this script as part of your .travis.yml before_script section:
12
+ # before_script:
13
+ # - curl https://gist.github.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash
14
+
15
+ CONNECT_URL=" http://saucelabs.com/downloads/Sauce-Connect-latest.zip"
16
+ CONNECT_DIR=" /tmp/sauce-connect-$RANDOM "
17
+ CONNECT_DOWNLOAD=" Sauce_Connect.zip"
18
+ CONNECT_LOG=" $CONNECT_DIR /log"
19
+
20
+ # Get Connect and start it
21
+ mkdir -p $CONNECT_DIR
22
+ cd $CONNECT_DIR
23
+ curl $CONNECT_URL > $CONNECT_DOWNLOAD 2> /dev/null
24
+ unzip $CONNECT_DOWNLOAD
25
+ rm $CONNECT_DOWNLOAD
26
+
27
+
28
+ echo " Starting Sauce Connect in the background"
29
+ echo " Logging into $CONNECT_LOG "
30
+ java -jar Sauce-Connect.jar --readyfile $SAUCE_CONNECT_READY_FILE \
31
+ --tunnel-identifier $TRAVIS_JOB_NUMBER \
32
+ $SAUCE_USERNAME $SAUCE_ACCESS_KEY > $CONNECT_LOG &
Original file line number Diff line number Diff line change 22
22
"karma-firefox-launcher" : " ~0.0.1" ,
23
23
"karma-ng-scenario" : " ~0.0.1" ,
24
24
"karma-junit-reporter" : " ~0.0.1" ,
25
+ "karma-sauce-launcher" : " ~0.0.4" ,
25
26
"yaml-js" : " 0.0.5" ,
26
27
"showdown" : " 0.3.1" ,
27
28
"rewire" : " 1.1.3" ,
You can’t perform that action at this time.
0 commit comments