5a652190d9
* Upgrade go-ethereum to v1.8 * Add Node Info for parity nodes * Upgrade start_private_blockchain to use v1.8
30 lines
659 B
YAML
30 lines
659 B
YAML
dist: trusty
|
|
language: go
|
|
go:
|
|
- 1.9
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
postgresql: "9.6"
|
|
|
|
go_import_path: github.com/vulcanize/vulcanizedb
|
|
|
|
before_install:
|
|
# ginkgo golint dep migrate
|
|
- make installtools
|
|
# geth
|
|
- wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.8.0-5f540757.tar.gz
|
|
- tar -xzf geth-linux-amd64-1.8.0-5f540757.tar.gz
|
|
- sudo cp geth-linux-amd64-1.8.0-5f540757/geth /usr/local/bin
|
|
|
|
before_script:
|
|
- sudo -u postgres createdb vulcanize_private
|
|
- make migrate HOST_NAME=localhost NAME=vulcanize_private PORT=5432
|
|
- nohup make startprivate </dev/null &
|
|
|
|
script:
|
|
- make test
|
|
|
|
notifications:
|
|
email: false
|