ipld-eth-server/.travis.yml
Matt K 18163f970e Get ABI via etherscan API (#96)
- Added ABI request
- Add unique constraint on contract hash for watched contracts
2017-12-07 09:58:06 -06:00

19 lines
499 B
YAML

dist: trusty
language: go
go:
- 1.9
services:
- postgresql
addons:
postgresql: "9.6"
before_script:
- wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.7.2-1db4ecdc.tar.gz
- tar -xzf geth-linux-amd64-1.7.2-1db4ecdc.tar.gz
- sudo cp geth-linux-amd64-1.7.2-1db4ecdc/geth /usr/local/bin
- ./scripts/setup
- nohup ./scripts/start_private_blockchain </dev/null &
- createdb vulcanize_private
- psql vulcanize_private < db/schema.sql
notifications:
email: false