From 2a9e08c2d05c84fe105f170810c8e8cf658f30dc Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 19 May 2024 10:15:48 +0200 Subject: [PATCH] appveyor: drop unnecessary `--clean-first` cmake option In CI all machines are fresh on startup, making the `clean` operation unnecessary. This can save some time/energy for each job run. Closes #13707 --- appveyor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.sh b/appveyor.sh index e25d19fcaa..9a71c9b7cf 100644 --- a/appveyor.sh +++ b/appveyor.sh @@ -62,7 +62,7 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then '-DCMAKE_INSTALL_PREFIX=C:/curl' \ "-DCMAKE_BUILD_TYPE=${PRJ_CFG}" # shellcheck disable=SC2086 - cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --clean-first -- ${BUILD_OPT:-} + cmake --build _bld --config "${PRJ_CFG}" --parallel 2 -- ${BUILD_OPT:-} if [ "${SHARED}" = 'ON' ]; then cp -f -p _bld/lib/*.dll _bld/src/ fi -- 2.47.3