diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 381b23d4c306eb698b71a076647fdfcdf80e3a05..fd5c85759cef5126e41e193be626917fa5bfc1ba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -169,6 +169,10 @@ windows-gnu-cng: after_script: [] variables: CFLAGS: "" # Silence some C warnings when compiling under Windows + only: + variables: + # Hack to disable job + - $CI_JOB_DISABLED == "false" windows-msvc-cng: tags: @@ -189,6 +193,10 @@ windows-msvc-cng: after_script: [] variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC + only: + variables: + # Hack to disable job + - $CI_JOB_DISABLED == "false" windows-msvc-nmakefile: tags: @@ -209,6 +217,10 @@ windows-msvc-nmakefile: after_script: [] variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC + only: + variables: + # Hack to disable job + - $CI_JOB_DISABLED == "false" windows-msvc-msbuild: tags: @@ -232,6 +244,10 @@ windows-msvc-msbuild: after_script: [] variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC + only: + variables: + # Hack to disable job + - $CI_JOB_DISABLED == "false" windows-msvc32-cng: tags: @@ -261,6 +277,10 @@ windows-msvc32-cng: after_script: [] variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC + only: + variables: + # Hack to disable job + - $CI_JOB_DISABLED == "false" variables: CONTAINER_REGISTRY: "192.168.122.1:5000"