Skip to content

Commit

Permalink
Provide a way to manually run staging builds (#314)
Browse files Browse the repository at this point in the history
This commit introduces an optional BK env var RUN_STAGING that allows manually triggering builds (for tests).
  • Loading branch information
dliappis authored Feb 5, 2025
1 parent 811b64e commit 6fbe771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ steps:
key: "dra-staging"
if: |
// Staging should only run when triggered from Unified Release
( (build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env('VERSION_QUALIFIER') != null) && build.env("BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG") == "unified-release-staging" )
build.env("RUN_STAGING") == "true" || ( (build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env('VERSION_QUALIFIER') != null) && build.env("BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG") == "unified-release-staging" )
steps:
- label: ":construction_worker: Build stack installers / Staging"
command: |
Expand Down

0 comments on commit 6fbe771

Please sign in to comment.