forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (39 loc) · 849 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
38
39
40
41
42
43
44
sudo: false
os:
- linux
language: node_js
node_js:
- "8"
- "9"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
branches:
# We need to whitelist the branches which we want to have "push" automation.
# Pull request automation is not constrained to this set of branches.
only:
- master
env:
global:
- DISPLAY=:99.0
matrix:
- CXX=g++-4.8 TEST_SUITE=testBuildIntegrity
matrix:
fast_finish: true
include:
- os: linux
node_js: "6"
env: CXX=g++-4.8 TEST_SUITE=lint
- os: linux
node_js: "6"
env: CXX=g++-4.8 TEST_SUITE=testState
- os: linux
node_js: "6"
env: CXX=g++-4.8 TEST_SUITE=testBlockchainBlockGasLimit
- os: linux
node_js: "6"
env: CXX=g++-4.8 TEST_SUITE=testBlockchainTotalDifficulty
script: npm run $TEST_SUITE