summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2019-05-29 15:35:08 +1200
committerRalph Boehme <slow@samba.org>2019-05-31 09:48:37 +0000
commitb5bf1b66d55f40862ece83ef013793fb303acca7 (patch)
treef4d01a46c2af162ef96acdcd5b01151ffdbd301c /.gitlab-ci.yml
parentb23d005cdc646e02af3c38852f75e4505070768e (diff)
downloadsamba-b5bf1b66d55f40862ece83ef013793fb303acca7.tar.gz
.gitlab-ci.yml: avoid using != to compare variables to support old versions
`!=` was only introduced after 11.11, according to doc at: https://docs.gitlab.com/ee/ci/variables/README.html#environment-variables-expressions For private gitlab instance, the version may not be new enough. Use `==` to make it backward compatible. Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Fri May 31 09:48:37 UTC 2019 on sn-devel-184
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dfa1f6423d3..65d7ad659b9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -238,7 +238,7 @@ pages:
only:
variables:
# do not run o3 for coverage since they are using different images
- - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE != "--enable-coverage"
+ - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
ubuntu1804-samba-o3:
extends: .samba-o3-template