2017-10-20 11:35:11 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-09-28 08:07:30 +00:00
|
|
|
language: go
|
|
|
|
|
|
|
|
go:
|
2017-05-23 21:34:07 +00:00
|
|
|
- 1.8
|
2016-09-28 08:07:30 +00:00
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
2017-02-27 12:52:10 +00:00
|
|
|
dist: trusty
|
|
|
|
|
2016-09-28 08:07:30 +00:00
|
|
|
install:
|
|
|
|
- go get golang.org/x/tools/cmd/cover
|
2017-10-23 10:21:30 +00:00
|
|
|
- make lint-deps
|
2016-09-28 08:07:30 +00:00
|
|
|
|
2017-10-20 10:10:28 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- stage: Lint
|
|
|
|
script: make lint
|
|
|
|
- stage: Test unit and integration
|
|
|
|
script: make test-unit-coverage
|
|
|
|
- stage: Test e2e
|
2017-10-23 10:07:41 +00:00
|
|
|
script: make test-e2e
|
2016-09-28 08:07:30 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- .ethereumtest
|