ipld-eth-server/.travis.yml
Elizabeth b37324bf3d Refactoring
* Move flip kick files pkg/transformers/flip_kick

* Consolidate test database setup

* Pull ganache ipcPath from config

* Update README to include info about using a Ganache chain
2018-08-07 15:17:29 -05:00

31 lines
551 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
- bash ./scripts/install-postgres-10.sh
- npm install -g ganache-cli
before_script:
- sudo -u postgres createdb vulcanize_private
- make migrate NAME=vulcanize_private
- bash ./pkg/transformers/start_test_chain.sh
script:
- make test
notifications:
email: false
after_script:
- bash ./pkg/transformers/stop_test_chain.sh