quorum/.travis.yml

46 lines
988 B
YAML
Raw Normal View History

2014-11-15 17:36:30 -08:00
language: go
go_import_path: github.com/ethereum/go-ethereum
sudo: false
matrix:
include:
- os: linux
dist: trusty
go: 1.5.4
- os: linux
dist: trusty
go: 1.6.2
- os: linux
dist: trusty
go: 1.7
- os: osx
go: 1.7
# This builder does the PPA upload (and nothing else).
- os: linux
dist: trusty
go: 1.7
env: PPA
addons:
apt:
packages:
- devscripts
- debhelper
- dput
script:
- go run build/ci.go debsrc -signer "Felix Lange (Geth CI Testing Key) <fjl@twurst.com>" -upload ppa:lp-fjl/geth-ci-testing
install:
2015-08-18 13:46:48 -07:00
- go get golang.org/x/tools/cmd/cover
2014-11-15 17:45:05 -08:00
script:
- go run build/ci.go install
- go run build/ci.go test -coverage -vet
2015-02-05 15:23:22 -08:00
after_success:
# - go run build/ci.go archive -type tar
2015-03-24 02:41:04 -07:00
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/e09ccdce1048c5e03445
on_success: change
2015-06-25 07:46:54 -07:00
on_failure: always