mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
ebe5fe2a02
* Update BUILD.bazel * Update check_gazelle.sh * Update check_gazelle.sh * Update check_visibility.sh * Revert "Update BUILD.bazel" This reverts commit 8d631fc49af38268e16d622a2002bea040a08d37. * remove travis slow bazel builds * Add buildkite build status
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
language: go
|
|
go_import_path: github.com/prysmaticlabs/prysm
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
go: 1.10.x
|
|
env:
|
|
- lint
|
|
script:
|
|
-
|
|
go get github.com/alecthomas/gometalinter && gometalinter --install && gometalinter ./... --deadline=10m --exclude=client/internal/client_helper.go
|
|
- os: linux
|
|
env:
|
|
- coverage
|
|
script:
|
|
- ./scripts/coverage.sh
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- language: node_js
|
|
os: linux
|
|
env:
|
|
- solidity
|
|
node_js:
|
|
- "lts/*"
|
|
before_install:
|
|
- npm install -g solium
|
|
install: true # Skip npm install.
|
|
script:
|
|
# Check solidity linter.
|
|
- solium -d contracts/
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
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
|
|
- ./send.sh failure $WEBHOOK_URL
|