Skip to content

Commit

Permalink
Fix BK DRA pipeline (#39212)
Browse files Browse the repository at this point in the history
This commit fixes the error
"interpolating remaining fields: Expected identifier to start with a letter, got /"
  • Loading branch information
dliappis committed Apr 25, 2024
1 parent 9457f64 commit 6d30bf1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .buildkite/packaging.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
key: dashboards
steps:
- label: Snapshot dashboards
if: build.branch =~ /^\d+\.\d+$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
if: build.branch =~ /^\d+\.\d+$$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
key: dashboards-snapshot
# TODO: container with go and make
agents:
Expand All @@ -32,7 +32,7 @@ steps:
- build/distributions/**/*

- label: Staging dashboards
if: build.branch =~ /^\d+\.\d+$/
if: build.branch =~ /^\d+\.\d+$$/
key: dashboards-staging
# TODO: container with go and make
agents:
Expand All @@ -46,7 +46,7 @@ steps:
- build/distributions/**/*

- group: Packaging snapshot
if: build.branch =~ /^\d+\.\d+$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
if: build.branch =~ /^\d+\.\d+$$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
key: packaging-snapshot
steps:
- label: "SNAPSHOT: {{matrix}}"
Expand Down Expand Up @@ -119,7 +119,7 @@ steps:

key: packaging-staging
## Only for release
if: build.branch =~ /^\d+\.\d+$/
if: build.branch =~ /^\d+\.\d+$$/
steps:
- label: "STAGING: {{matrix}}"
env:
Expand Down Expand Up @@ -192,7 +192,7 @@ steps:
steps:
- label: DRA Snapshot
## Only for release branches and main
if: build.branch =~ /^\d+\.\d+$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
if: build.branch =~ /^\d+\.\d+$$/ || build.branch == 'main' || build.env('RUN_SNAPSHOT') == "true"
key: dra-snapshot
env:
DRA_WORKFLOW: snapshot
Expand All @@ -210,7 +210,7 @@ steps:

- label: DRA Staging
## Only for release branches
if: build.branch =~ /^\d+\.\d+$/
if: build.branch =~ /^\d+\.\d+$$/
key: dra-staging
env:
DRA_WORKFLOW: staging
Expand Down

0 comments on commit 6d30bf1

Please sign in to comment.