From 87484dd53a064d0cc500ac70f87e1636844f8e69 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 8 Aug 2025 02:27:20 +0200 Subject: [PATCH] appveyor.sh skip certs for skiprun jobs -> PR --- appveyor.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.sh b/appveyor.sh index c5381890ad..714f185e67 100644 --- a/appveyor.sh +++ b/appveyor.sh @@ -55,6 +55,7 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then [ -n "${WINTARGET:-}" ] && options+=" -DCURL_TARGET_WINDOWS_VERSION=${WINTARGET}" [ "${OPENSSL}" = 'ON' ] && options+=" -DOPENSSL_ROOT_DIR=${openssl_root_win}" [ -n "${CURLDEBUG:-}" ] && options+=" -DENABLE_CURLDEBUG=${CURLDEBUG}" + [ "${TFLAGS}" = 'skiprun' ] && options+=' -D_CURL_SKIP_BUILD_CERTS=ON' if [ "${APPVEYOR_BUILD_WORKER_IMAGE}" = 'Visual Studio 2013' ]; then mkdir "_bld${_chkprefill}" cd "_bld${_chkprefill}"