]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
appveyor: drop unnecessary `--clean-first` cmake option
authorViktor Szakats <commit@vsz.me>
Sun, 19 May 2024 08:15:48 +0000 (10:15 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 19 May 2024 21:26:56 +0000 (23:26 +0200)
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

index e25d19fcaab266594a44c42110daba7f09ead5fd..9a71c9b7cf56523128f85de7705b1730d7513262 100644 (file)
@@ -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