[SCM] Samba Shared Repository - branch master updated

Ralph Böhme slow at samba.org
Fri May 31 09:49:02 UTC 2019


The branch, master has been updated
       via  b5bf1b66d55 .gitlab-ci.yml: avoid using != to compare variables to support old versions
      from  b23d005cdc6 selftest: Don't use global dirs when parsing customdc realm

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit b5bf1b66d55f40862ece83ef013793fb303acca7
Author: Joe Guo <joeg at catalyst.net.nz>
Date:   Wed May 29 15:35:08 2019 +1200

    .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 at catalyst.net.nz>
    Reviewed-by: Ralph Boehme <slow at samba.org>
    Reviewed-by: Andrew Bartlett <abartlet at samba.org>
    
    Autobuild-User(master): Ralph Böhme <slow at samba.org>
    Autobuild-Date(master): Fri May 31 09:48:37 UTC 2019 on sn-devel-184

-----------------------------------------------------------------------

Summary of changes:
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

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


-- 
Samba Shared Repository



More information about the samba-cvs mailing list