ipld-eth-server/.travis.yml

31 lines
549 B
YAML
Raw Normal View History

dist: trusty
language: go
go:
- 1.9
services:
- postgresql
addons:
postgresql: "9.6"
2018-01-26 00:10:54 +00:00
go_import_path: github.com/vulcanize/vulcanizedb
before_install:
# ginkgo golint dep migrate
- make installtools
- bash ./scripts/install-postgres-10.sh
2018-08-07 15:51:34 +00:00
- npm install -g ganache-cli
before_script:
- sudo -u postgres createdb vulcanize_private
- make migrate NAME=vulcanize_private
2018-08-07 15:51:34 +00:00
- bash ./libraries/maker/start_test_chain.sh
script:
- make test
notifications:
email: false
2018-08-07 15:51:34 +00:00
after_script:
- bash ./libraries/maker/stop_test_chain.sh