[Buildkite] Tweak pipeline to conditionally ignore a wait step (#781)

pull/782/head
Amir Zarrinkafsh 2020-03-25 14:09:35 +11:00 committed by GitHub
parent c366233152
commit 92023de85d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ steps:
if: build.env("CI_DOCS_BYPASS") != "true"
- wait:
if: build.branch != "master" && build.env("CI_DOCS_BYPASS") != "true"
if: build.branch !~ /^(master)|(v[0-9]+\.[0-9]+\.[0-9]+)$\$/ && build.env("CI_DOCS_BYPASS") != "true"
- label: ":chrome: Integration Tests"
command: ".buildkite/steps/e2etests.sh | buildkite-agent pipeline upload"