Don't rebuild/retest release tags (#5385)

This commit is contained in:
Michael Vines
2019-08-01 13:11:42 -07:00
committed by GitHub
parent 97c0573c7d
commit 5212b2716c
4 changed files with 28 additions and 1 deletions

View File

@ -10,7 +10,13 @@
set -e
cd "$(dirname "$0")"/..
buildkite-agent pipeline upload ci/buildkite.yml
if [[ -n $BUILDKITE_TAG ]]; then
buildkite-agent annotate --style info --context release-tag \
"https://github.com/solana-labs/solana/releases/$BUILDKITE_TAG"
buildkite-agent pipeline upload ci/buildkite-release.yml
else
buildkite-agent pipeline upload ci/buildkite.yml
fi
if [[ $BUILDKITE_BRANCH =~ ^pull ]]; then
# Add helpful link back to the corresponding Github Pull Request