From 921efbeea10a611143bb88bdfa93f94800453374 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 14 Mar 2023 07:14:49 +0100 Subject: [PATCH] gitlab-ci: Don't install CMake The choco server is somtimes ratelimited. Avoid running into issues and use cmake already installed on the runner. Signed-off-by: Andreas Schneider Reviewed-by: Jakub Jelen (cherry picked from commit 0b826c986cc4c454bde9148f9a3e823a68892054) --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 48b843c5..c2c5c502 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -457,7 +457,8 @@ freebsd/openssl_1.1.1/x86_64: paths: - obj/ before_script: - - choco install --no-progress -y cmake + # cmake is installed by default now + # - choco install --no-progress -y cmake - $env:Path += ';C:\Program Files\CMake\bin' - If (!(test-path .vcpkg\archives)) { mkdir -p .vcpkg\archives } - $env:VCPKG_DEFAULT_BINARY_CACHE="$PWD\.vcpkg\archives"