ipld-eth-server/.travis.yml
Matt K 4fabe3e917 Add receipts (#119)
* Conversion between Geth Receipt and core.Receipt

* Add receipt to DB

* Insert receipts with transactions

* Update Travis CI to use dep for dependencies
2018-01-03 11:23:43 -06:00

29 lines
637 B
YAML

dist: trusty
language: go
go:
- 1.9
services:
- postgresql
addons:
postgresql: "9.6"
install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
- go get -u github.com/onsi/ginkgo/ginkgo
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
script:
- ginkgo -r
notifications:
email: false