mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
Switch the build to use BrowserStack instead of SauceLabs. This also adds IE11 to our build.
10 lines
225 B
Bash
Executable File
10 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
|