-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (44 loc) · 842 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
47
48
49
50
51
52
53
54
55
language: node_js
sudo: required
node_js:
- "8.11"
env:
- CXX=g++-4.8
services:
- docker
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- g++-4.8
- software-properties-common
before_install:
- export CXX="g++-4.8"
- npm update
- sudo apt update
install:
- npm install -g npm@latest
- npm install -g truffle
- npm install -g solium
- docker pull mythril/myth
# - sudo apt install ruby-coveralls
- npm install
script:
- truffle compile
- npm run coverage
- solium -d contracts/
- docker run mythril/myth --truffle
notifications:
slack:
on_success: always
# - docker pull mythril/myth
- npm install
script:
- npm run coverage
- npm run lint
# - docker run mythril/myth --truffle
notifications:
slack:
on_success: always