forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (56 loc) · 1.13 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
services:
- xvfb
language: node_js
git:
depth: false
matrix:
fast_finish: true
include:
- node_js: 8
env: TEST=unit
- node_js: 11
env: TEST=unit
- node_js: 12
env: TEST=unit
- node_js: 10
env: TEST=build_and_lint
- node_js: 10
env: TEST=unit_and_e2e_clients
- node_js: 10
env: TEST=e2e_ganache
- node_js: 10
env: TEST=e2e_mosaic
- node_js: 10
env: TEST=e2e_ens
- node_js: 10
env: TEST=e2e_browsers
addons:
chrome: stable
firefox: latest
allow_failures:
- node_js: 10
env: TEST=e2e_ganache
- node_js: 10
env: TEST=e2e_mosaic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-5";
export CXX="g++-5";
export LINK="gcc-5";
export LINKXX="g++-5";
fi
- export DISPLAY=:99.0
- export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
install:
- if [[ $TEST != "e2e_ganache" ]] && [[ $TEST != "e2e_mosaic" ]]; then
npm install;
fi
script:
- npm run ci