-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (30 loc) · 903 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
dist: xenial
sudo: required
language: python
node_js:
- "9.4.0"
python:
- "3.6"
matrix:
include:
- os: linux
dist: xenial
before_install:
- sudo add-apt-repository ppa:ethereum/ethereum -y
- sudo apt-get update
- sudo apt-get install build-essential -y
- sudo apt-get install gcc g++ libssl-dev libudev-dev pkg-config
- curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
- sudo apt-get install -y nodejs
- rm -rf node_modules
- echo "finish node_modules"
- sudo apt-get install software-properties-common -y -qq
- sudo add-apt-repository ppa:ethereum/ethereum-dev -y
- sudo apt-get update
- sudo apt-get install geth -y
install:
- bash ./solidity/bin/travis-install.sh
- bash ./backend/travisCI/travis-install.sh
script:
- bash ./solidity/bin/test.sh
- bash ./backend/travisCI/test.sh