From 873f1a9603f9bf96ead97381b21407fce53fb901 Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Mon, 4 Sep 2023 10:15:18 -0400 Subject: [PATCH] CI: disable windows jobs disable windows jobs until we have a windows runner again --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 381b23d..fd5c857 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" -- GitLab