aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDaniel Stone <[email protected]>2020-04-16 14:03:49 +0100
committerDaniel Stone <[email protected]>2020-04-16 14:03:49 +0100
commit7a794b1de40df87edc359a36d14e214daa1bfe60 (patch)
tree93254a035d5a9febad027f382eac0f7e83d667c2 /.gitlab-ci.yml
parent9ecd9463de6ba7a9f0648da16ef9371dd8a202f0 (diff)
CI: Disable Windows/VS2019 builds
An update seems to have poisoned gitlab-runner, and it can no longer resolve DNS even though the host system can. Disable this until we can figure out what's going on. Signed-off-by: Daniel Stone <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4589>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c2b73bca927..c9b7c3ee8da 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -214,7 +214,7 @@ arm_test:
WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
-windows_build_vs2019:
+.windows_build_vs2019:
extends:
- .container
- .windows-docker-vs2019
@@ -233,7 +233,7 @@ windows_build_vs2019:
extends: .windows-docker-vs2019
image: "$WINDOWS_IMAGE"
needs:
- - windows_build_vs2019
+ - .windows_build_vs2019
# BUILD
@@ -438,7 +438,7 @@ meson-clang:
CC: "ccache clang-9"
CXX: "ccache clang++-9"
-meson-windows-vs2019:
+.meson-windows-vs2019:
extends:
- .build-windows
- .use-windows_build_vs2019