Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit eaa1d00

Browse files
committed
chore(build): remove IE8 target from all test configs
BREAKING CHANGE: As communicated before, IE8 is no longer supported. more info: http://blog.angularjs.org/2013/12/angularjs-13-new-release-approaches.html
1 parent 3cf2da0 commit eaa1d00

File tree

3 files changed

+4
-17
lines changed

3 files changed

+4
-17
lines changed

jenkins_build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ echo "#################################"
77
# Enable tracing and exit on first failure
88
set -xe
99

10-
# Define reasonable set of browsers in case we are running manually from commandline
10+
# This is the default set of browsers to use on the CI server unless overridden via env variable
1111
if [[ -z "$BROWSERS" ]]
1212
then
13-
BROWSERS="Chrome,Firefox,Opera,/Users/jenkins/bin/safari.sh,/Users/jenkins/bin/ie8.sh,/Users/jenkins/bin/ie9.sh"
13+
BROWSERS="Chrome,Firefox,Opera,/Users/jenkins/bin/safari.sh,/Users/jenkins/bin/ie9.sh"
1414
fi
1515

1616
# CLEAN #

karma-shared.conf.js

-13
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ module.exports = function(config, specificOptions) {
4545
platform: 'OS X 10.9',
4646
version: '7'
4747
},
48-
'SL_IE_8': {
49-
base: 'SauceLabs',
50-
browserName: 'internet explorer',
51-
platform: 'Windows 7',
52-
version: '8'
53-
},
5448
'SL_IE_9': {
5549
base: 'SauceLabs',
5650
browserName: 'internet explorer',
@@ -88,13 +82,6 @@ module.exports = function(config, specificOptions) {
8882
os: 'Windows',
8983
os_version: '8'
9084
},
91-
'BS_IE_8': {
92-
base: 'BrowserStack',
93-
browser: 'ie',
94-
browser_version: '8.0',
95-
os: 'Windows',
96-
os_version: '7'
97-
},
9885
'BS_IE_9': {
9986
base: 'BrowserStack',
10087
browser: 'ie',

scripts/travis/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
77
if [ $JOB = "unit" ]; then
88
grunt ci-checks
99
grunt test:promises-aplus
10-
grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
11-
grunt test:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
10+
grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
11+
grunt test:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
1212
elif [ $JOB = "e2e" ]; then
1313
export TARGET_SPECS="build/docs/ptore2e/**/*jqlite_test.js"
1414
if [ $TEST_TARGET = "jquery" ]; then

0 commit comments

Comments
 (0)