-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
34 lines (28 loc) · 1.07 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: java
jdk:
- openjdk7
env:
global:
- REMOTE_URL=http://fscheffer:[email protected]:80/wd/hub
matrix:
# latest version of firefox
- BROWSER=firefox VERSION=35
# oldest firefox that is supported by the current firefox driver
- BROWSER=firefox VERSION=23
# latest version of chrome
- BROWSER=chrome VERSION=40 PLATFORM=WINDOWS
- BROWSER=chrome VERSION=40 PLATFORM=LINUX
# oldest version of chrome supported by SauceLabs
- BROWSER=chrome VERSION=26 PLATFORM=WINDOWS
- BROWSER=chrome VERSION=26 PLATFORM=LINUX
# player issues, dropdown key interaction issue
# - BROWSER=opera VERSION=12
# audio player is not loading (due to a vm issue?)
# - BROWSER="internet explorer" VERSION=11
# - BROWSER="internet explorer" VERSION=10
addons:
sauce_connect:
username: "fscheffer"
access_key:
secure: "634bce7e-ddfd-4ae4-8ea2-c3bac682f796"
script: mvn verify -Dtest.remoteUrl=$REMOTE_URL -Dtest.browser="$BROWSER" -Dtest.browserVersion=$VERSION -Dtest.platform="$PLATFORM"