aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2014-03-05 16:45:04 -0800
committerIgor Minar2014-03-06 01:53:17 -0800
commiteaa1d00b24008f590b95ad099241b4003688cdda (patch)
tree3123a34d75f897affd4f9d5abf2e5e4e840c79be
parent3cf2da0e384e23602a9fea597500d637867c1eb9 (diff)
downloadangular.js-eaa1d00b24008f590b95ad099241b4003688cdda.tar.bz2
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
-rwxr-xr-xjenkins_build.sh4
-rw-r--r--karma-shared.conf.js13
-rwxr-xr-xscripts/travis/build.sh4
3 files changed, 4 insertions, 17 deletions
diff --git a/jenkins_build.sh b/jenkins_build.sh
index 806eb0f2..de510672 100755
--- a/jenkins_build.sh
+++ b/jenkins_build.sh
@@ -7,10 +7,10 @@ echo "#################################"
# Enable tracing and exit on first failure
set -xe
-# Define reasonable set of browsers in case we are running manually from commandline
+# This is the default set of browsers to use on the CI server unless overridden via env variable
if [[ -z "$BROWSERS" ]]
then
- BROWSERS="Chrome,Firefox,Opera,/Users/jenkins/bin/safari.sh,/Users/jenkins/bin/ie8.sh,/Users/jenkins/bin/ie9.sh"
+ BROWSERS="Chrome,Firefox,Opera,/Users/jenkins/bin/safari.sh,/Users/jenkins/bin/ie9.sh"
fi
# CLEAN #
diff --git a/karma-shared.conf.js b/karma-shared.conf.js
index e9a5a5e3..69ec2e09 100644
--- a/karma-shared.conf.js
+++ b/karma-shared.conf.js
@@ -45,12 +45,6 @@ module.exports = function(config, specificOptions) {
platform: 'OS X 10.9',
version: '7'
},
- 'SL_IE_8': {
- base: 'SauceLabs',
- browserName: 'internet explorer',
- platform: 'Windows 7',
- version: '8'
- },
'SL_IE_9': {
base: 'SauceLabs',
browserName: 'internet explorer',
@@ -88,13 +82,6 @@ module.exports = function(config, specificOptions) {
os: 'Windows',
os_version: '8'
},
- 'BS_IE_8': {
- base: 'BrowserStack',
- browser: 'ie',
- browser_version: '8.0',
- os: 'Windows',
- os_version: '7'
- },
'BS_IE_9': {
base: 'BrowserStack',
browser: 'ie',
diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh
index 79fa7715..0a7cd4de 100755
--- a/scripts/travis/build.sh
+++ b/scripts/travis/build.sh
@@ -7,8 +7,8 @@ export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
if [ $JOB = "unit" ]; then
grunt ci-checks
grunt test:promises-aplus
- grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
- grunt test:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
+ grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
+ grunt test:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
elif [ $JOB = "e2e" ]; then
export TARGET_SPECS="build/docs/ptore2e/**/*jqlite_test.js"
if [ $TEST_TARGET = "jquery" ]; then