mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Switch the build to use BrowserStack instead of SauceLabs. This also adds IE11 to our build.
9 lines
225 B
Bash
Executable file
9 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
|
|
|
|
grunt parallel:travis --reporters dots \
|
|
--browsers BS_Chrome,BS_Safari,BS_Firefox,BS_IE_8,BS_IE_9,BS_IE_10,BS_IE_11 \
|
|
--e2e-browsers BS_Chrome
|