forked from webrtcHacks/adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (31 loc) · 866 Bytes
/
.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
35
36
37
sudo: false
language: node_js
node_js:
- 4.1
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
- BROWSER=firefox BVER=stable
- BROWSER=firefox BVER=beta
- BROWSER=firefox BVER=nightly
- BROWSER=firefox BVER=esr
- BROWSER=MicrosoftEdge BVER=stable
matrix:
fast_finish: true
allow_failures:
- env: BROWSER=chrome BVER=unstable
- env: BROWSER=firefox BVER=stable
- env: BROWSER=firefox BVER=beta
- env: BROWSER=firefox BVER=nightly
- env: BROWSER=MicrosoftEdge BVER=stable
before_script:
- ./node_modules/travis-multirunner/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- node_modules/.bin/grunt
- npm test
after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true