mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
20e9af4532
Former-commit-id: 898c0ae1194d1f17811086d8ef5f68f15b478184 [formerly 97babbfad351e385c24c59a50d0a3d42dc7717c5] Former-commit-id: ee689e2c8a8a246df40fdc14dfceb6ca2b5b2a5f
65 lines
2.4 KiB
YAML
65 lines
2.4 KiB
YAML
language: go
|
|
go_import_path: github.com/prysmaticlabs/geth-sharding
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
go: 1.10.x
|
|
env:
|
|
- lint
|
|
script:
|
|
-
|
|
go get github.com/alecthomas/gometalinter && gometalinter --install && gometalinter
|
|
- os: linux
|
|
env: V=0.15.0
|
|
before_install:
|
|
# Install Bazel
|
|
- |
|
|
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
|
|
OS=darwin
|
|
else
|
|
sysctl kernel.unprivileged_userns_clone=1
|
|
OS=linux
|
|
fi
|
|
if [[ "${V}" == "HEAD" ]]; then
|
|
# Determine last successful build number. This may change while we are
|
|
# downloading, so it's important to determine ahead of time, in case
|
|
# we need to resume the download.
|
|
CI_BASE="http://ci.bazel.io/view/Bazel%20bootstrap%20and%20maintenance/job/Bazel/PLATFORM_NAME=${OS}-x86_64/"
|
|
CI_INDEX_URL="${CI_BASE}/lastSuccessfulBuild/"
|
|
wget -q -O build-index.html "${CI_INDEX_URL}"
|
|
CI_BUILD=$(grep '<title>' build-index.html | sed -e 's/^.*#\([0-9]*\).*$/\1/')
|
|
# Determine the artifact name. This is normally, bazel--installer.sh,
|
|
# but it may be, for example, bazel-0.5rc2-installer.sh before a release.
|
|
CI_ARTIFACT=$(grep -o 'bazel-[^\"-]*-installer.sh' build-index.html | head -n 1)
|
|
URL="${CI_BASE}/${CI_BUILD}/artifact/output/ci/${CI_ARTIFACT}"
|
|
rm build-index.html
|
|
else
|
|
URL="https://github.com/bazelbuild/bazel/releases/download/${V}/bazel-${V}-installer-${OS}-x86_64.sh"
|
|
fi
|
|
wget -O install.sh "${URL}"
|
|
chmod +x install.sh
|
|
./install.sh --user
|
|
rm -f install.sh
|
|
# Decrypt service account (only works on prysmaticlabs branches)
|
|
- if [[ $encrypted_64ca747eb448_iv ]]; then openssl aes-256-cbc -K $encrypted_64ca747eb448_key -iv $encrypted_64ca747eb448_iv
|
|
-in service-account.json.enc -out /tmp/service-account.json -d; fi
|
|
|
|
install: true # Skip install go packages.
|
|
|
|
script:
|
|
# Run all tests.
|
|
- |
|
|
bazel \
|
|
--bazelrc=.travis-bazelrc \
|
|
test \
|
|
//...
|
|
|
|
# Check that BUILD files are formatted correctly.
|
|
- ./check_gazelle.sh
|
|
|
|
# Shutdown must be last.
|
|
- bazel shutdown
|
|
|
|
notifications:
|
|
email: false |