16 lines
517 B
YAML
16 lines
517 B
YAML
# Build steps that run on a release tag
|
|
#
|
|
# All the steps in `buildkite.yml` are skipped and we jump directly to the
|
|
# secondary build steps since it's assumed the commit that was tagged is known
|
|
# to be good so there's no need to rebuild and retest it.
|
|
steps:
|
|
- trigger: "solana-secondary"
|
|
branches: "!pull/*"
|
|
async: true
|
|
build:
|
|
message: "${BUILDKITE_MESSAGE}"
|
|
commit: "${BUILDKITE_COMMIT}"
|
|
branch: "${BUILDKITE_BRANCH}"
|
|
env:
|
|
TRIGGERED_BUILDKITE_TAG: "${BUILDKITE_TAG}"
|