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