ipld-eth-server/.travis.yml
2018-08-07 10:51:34 -05:00

31 lines
549 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 ./libraries/maker/start_test_chain.sh
script:
- make test
notifications:
email: false
after_script:
- bash ./libraries/maker/stop_test_chain.sh