2015-07-28 22:16:16 +00:00
|
|
|
language: go
|
2018-07-20 21:31:26 +00:00
|
|
|
go_import_path: github.com/prysmaticlabs/prysm
|
2015-07-28 22:16:16 +00:00
|
|
|
sudo: false
|
2018-01-13 22:31:28 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2019-04-09 01:57:09 +00:00
|
|
|
dist: xenial
|
|
|
|
go: 1.12.x
|
2018-01-13 22:31:28 +00:00
|
|
|
env:
|
|
|
|
- lint
|
2019-02-06 01:38:29 +00:00
|
|
|
install:
|
|
|
|
- go get ${gobuild_args} -t ./...
|
2018-01-13 22:31:28 +00:00
|
|
|
script:
|
2019-02-06 01:38:29 +00:00
|
|
|
- go get ${gobuild_args} github.com/alecthomas/gometalinter && gometalinter --install && gometalinter ./...
|
2019-02-05 15:46:32 +00:00
|
|
|
email: false
|
2018-09-10 02:50:04 +00:00
|
|
|
after_success:
|
|
|
|
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
|
|
|
|
- chmod +x send.sh
|
|
|
|
- ./send.sh success $WEBHOOK_URL
|
|
|
|
after_failure:
|
|
|
|
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
|
|
|
|
- chmod +x send.sh
|
2018-09-16 16:27:02 +00:00
|
|
|
- ./send.sh failure $WEBHOOK_URL
|