[Buildkite] Optimise pipeline for tagged deployments (#766)
* [Buildkite] Optimise pipeline for tagged deployments Ensure Unit and Integration testing is bypassed for tagged builds. * Apply suggestions from code review Co-Authored-By: Clément Michaud <clement.michaud34@gmail.com>pull/767/head^2
parent
8dc1f898d8
commit
8b64c9aad5
|
@ -28,7 +28,7 @@ env:
|
|||
steps:
|
||||
- label: ":hammer_and_wrench: Unit Test"
|
||||
command: "authelia-scripts --log-level debug ci"
|
||||
if: build.branch != "master" && build.env("CI_DOCS_BYPASS") != "true"
|
||||
if: (build.branch != "master" || build.tag !~ /^v.*/) && build.env("CI_DOCS_BYPASS") != "true"
|
||||
|
||||
- wait:
|
||||
if: build.env("CI_DOCS_BYPASS") != "true"
|
||||
|
@ -45,5 +45,5 @@ steps:
|
|||
command: ".buildkite/steps/e2etests.sh | buildkite-agent pipeline upload"
|
||||
depends_on:
|
||||
- "build-docker-amd64"
|
||||
if: build.branch != "master" && build.env("CI_DOCS_BYPASS") != "true"
|
||||
EOF
|
||||
if: (build.branch != "master" || build.tag !~ /^v.*/) && build.env("CI_DOCS_BYPASS") != "true"
|
||||
EOF
|
||||
|
|
Loading…
Reference in New Issue