From: Viktor Szakats Date: Sun, 19 May 2024 08:15:48 +0000 (+0200) Subject: appveyor: drop unnecessary `--clean-first` cmake option X-Git-Tag: curl-8_8_0~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a9e08c2d05c84fe105f170810c8e8cf658f30dc;p=thirdparty%2Fcurl.git 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 --- 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