-
Notifications
You must be signed in to change notification settings - Fork 176
/
.travis.yml
49 lines (35 loc) · 916 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
dist: bionic
sudo: required
matrix:
include:
- language: python
python: 3.7.6
before_install:
- sudo add-apt-repository ppa:ethereum/ethereum --y
- sudo apt-get update
- sudo apt-get install solc
install:
- pip install mythx-cli
script:
- mythx analyze --solc-version 0.6.4 contracts/orfeed.sol
- language: node_js
node_js: 8.11.3
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- g++-4.8
before_install:
- export CXX="g++-4.8"
- npm install -g npm@latest
- npm install -g truffle
install:
- npm install
script:
- truffle test --mainnet
notifications:
email: false