Skip to content

Commit

Permalink
Reformat the if records
Browse files Browse the repository at this point in the history
  • Loading branch information
paolino committed Dec 15, 2023
1 parent 38a6634 commit 708bb9d
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ steps:
TMPDIR: "/cache"

- block: "macOS steps"
if: '(build.branch !~ /^gh-readonly-queue\/master/) && (build.branch != "master") && (build.branch !~ /^release-candidate/) && (build.branch != "rc-latest")'
if: |
build.branch !~ /^gh-readonly-queue\/master/
&& build.branch != "master"
&& build.branch !~ /^release-candidate/
&& build.branch != "rc-latest"
depends_on: linux-nix
key: trigger-macos

Expand Down Expand Up @@ -185,8 +189,12 @@ steps:
system: ${macos}

- block: "Build package (linux)"
if: |
build.branch !~ /^gh-readonly-queue\/master/
&& build.branch != "master"
&& build.branch !~ /^release-candidate/
&& build.branch != "rc-latest"
depends_on: linux-nix
if: '(build.branch !~ /^gh-readonly-queue\/master/) && (build.branch != "master") && (build.branch !~ /^release-candidate/) && (build.branch != "rc-latest")'
key: trigger-build-linux-package

- label: 'Build package (linux)'
Expand All @@ -200,8 +208,12 @@ steps:
TMPDIR: "/cache"

- block: "Build windows artifacts"
if: |
build.branch !~ /^gh-readonly-queue\/master/
&& build.branch != "master"
&& build.branch !~ /^release-candidate/
&& build.branch != "rc-latest"
depends_on: linux-nix
if: '(build.branch !~ /^gh-readonly-queue\/master/) && (build.branch != "master") && (build.branch !~ /^release-candidate/) && (build.branch != "rc-latest")'
key: trigger-build-windows-artifacts

- label: 'Build package (windows)'
Expand All @@ -225,7 +237,11 @@ steps:
TMPDIR: "/cache"

- block: "Run E2E tests"
if: '(build.branch !~ /^gh-readonly-queue\/master/) && (build.branch != "master") && (build.branch !~ /^release-candidate/) && (build.branch != "rc-latest")'
if: |
build.branch !~ /^gh-readonly-queue\/master/
&& build.branch != "master"
&& build.branch !~ /^release-candidate/
&& build.branch != "rc-latest"
depends_on: linux-nix
key: trigger-e2e-tests

Expand Down Expand Up @@ -256,7 +272,7 @@ steps:
- windows-package
- windows-testing-bundle
- e2e
if: '(build.branch =~ /^release-candidate/)' #build.branch =~ /\/feature$$/
if: build.branch =~ /^release-candidate/
command: .buildkite/retag-rc-latest.sh
agents:
system: ${linux}
Expand Down

0 comments on commit 708bb9d

Please sign in to comment.