36 lines
688 B
YAML
36 lines
688 B
YAML
dist: trusty
|
|
language: go
|
|
go:
|
|
- 1.9
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
postgresql: "9.6"
|
|
ssh_known_hosts:
|
|
- 147.75.96.51
|
|
|
|
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:
|
|
- go get -u github.com/pressly/sup/cmd/sup
|
|
- 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
|
|
if: branch = staging
|
|
- sup --debug staging deploy
|