2017-10-20 11:35:11 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
2016-09-28 08:07:30 +00:00
|
|
|
language: go
|
|
|
|
go:
|
2017-12-21 04:52:00 +00:00
|
|
|
- 1.9.x
|
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:
|
2017-11-07 17:46:11 +00:00
|
|
|
- go get golang.org/x/tools/cmd/cover
|
2017-11-29 06:48:40 +00:00
|
|
|
- make mock-install
|
|
|
|
- make lint-install
|
2017-10-20 10:10:28 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
2017-11-07 17:46:11 +00:00
|
|
|
- stage: Lint
|
|
|
|
script: make lint
|
|
|
|
- stage: Test unit and integration
|
|
|
|
script: make test-unit-coverage
|
2017-11-29 06:48:40 +00:00
|
|
|
- stage: Test e2e on private network
|
2017-11-07 17:46:11 +00:00
|
|
|
script: make test-e2e
|
|
|
|
- stage: Test e2e on public network
|
2017-11-20 18:21:30 +00:00
|
|
|
# disable running this stage for PRs as they do not have access
|
|
|
|
# to the ACCOUNT_PASSWORD env variable needed to unlock the public testnet accounts.
|
|
|
|
# using fork == false may be preferred as it would allow PRs from the origin
|
|
|
|
# to still run, but currently does not work due to a bug
|
|
|
|
if: type != pull_request
|
2018-01-18 16:55:17 +00:00
|
|
|
script: make test-e2e networkid=4
|
2016-09-28 08:07:30 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
2017-11-07 17:46:11 +00:00
|
|
|
- ".ethereumtest/Mainnet"
|
|
|
|
- ".ethereumtest/Rinkeby"
|
|
|
|
- ".ethereumtest/Ropsten"
|
|
|
|
- ".ethereumtest/StatusChain"
|
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
secure: pKU50Ex43gQUElL7R9U/N6aSUdubA7ypXQeH+qFGu65mb5RAReTPHHnVmO+sEuVoepmy19T3jSfRUWupY8YsLljJpJY12y9UDg22iCbC7AFbvrVWatDIKZVsOFEvtXBiF/gJ8jPHILhm+LytekbnsB1O04YzWb/5ZOlGOxSjfoqmevGJ17vUdnPcIvRzDq41xopITCPaK1cg8PXdZVhvy2FW50hTixRIf1wVmk/qM8LWvTQTf1b+KhA9aZaIV8lzJyQvp5rUcNmQhse9/+sagldBEF4YqXCDsQsaOkXuR4furi66b3QtMKpPftUiitsQXg4R1N25wQje5W6jt/mYaZynJSB4EDF5gTvDElxdQQ352mvBircv3plesUMM2NyEVcuOSNtjQSjdaNdes2MbLIER5qDehJNNv8ZaL3dC4V9dxI/L3ajtUvULBPD39sr2L1xkA7bNsOJHQy4CBU/i8YHsbNdlq55Z8kCueNGTi31tuxjuVsfLZtitLUjJ6l/YF/T5qhoM6UVVLtfk91WCPWgDrJ7NqIMNuo+Rhph0zYvizhB686cL2Vs4tJJEr+9ltaXtxs3msbGLMshTYcHbg4PbBLZXxo0MNpq7zTDUDPkWcBpYP7qfg7Z1f6dZ4Q4tr1WneO5XST547sxjtHIp6+u2XEr5JOj5JDjHCJQoA1c=
|