-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (41 loc) · 1005 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
45
46
# Travis CI runs are deactivated in favour of CircleCI build checks
# Turn to the CircleCI configuration in .circleci directory for changing build settings
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