revert: appveyor: try vs2008 x64 with VS2013 image

Also missing from this runner image:
```
+ cmake -G 'Visual Studio 9 2008 Win64' -DCMAKE_VS_GLOBALS=TrackFileAccess=false
  -DCMAKE_UNITY_BUILD=ON -DCURL_TEST_BUNDLES=ON -DCURL_WERROR=ON -DBUILD_SHARED_LIBS=ON
  -DCURL_STATIC_CRT=ON -DENABLE_DEBUG=ON -DENABLE_UNICODE=OFF -DHTTP_ONLY=OFF
  -DCURL_USE_SCHANNEL=ON -DCURL_USE_OPENSSL=ON -DCURL_USE_LIBPSL=OFF
  -DOPENSSL_ROOT_DIR=C:/OpenSSL-Win64 ..
-- Using CMake version 3.12.2
-- curl version=[8.13.0-DEV]
-- The C compiler identification is unknown
CMake Error at CMakeLists.txt:85 (project):
  No CMAKE_C_COMPILER could be found.

-- Configuring incomplete, errors occurred!
See also "C:/projects/curl/_bld/CMakeFiles/CMakeOutput.log".
See also "C:/projects/curl/_bld/CMakeFiles/CMakeError.log".
+ cat '_bld/CMakeFiles/CMake*'
Command exited with code 1
```
This commit is contained in:
Viktor Szakats 2025-02-26 23:32:01 +01:00
parent 145d813385
commit d651b71f88
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201
2 changed files with 3 additions and 11 deletions

View File

@ -50,7 +50,7 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
for _chkprefill in '' ${CHKPREFILL:-}; do
options=''
[ "${_chkprefill}" = '_chkprefill' ] && options+=' -D_CURL_PREFILL=OFF'
[[ "${TARGET:-}" = *'ARM64'* ]] && SKIP_RUN='ARM64 architecture'
[[ "${TARGET}" = *'ARM64'* ]] && SKIP_RUN='ARM64 architecture'
[ -n "${TOOLSET:-}" ] && options+=" -T ${TOOLSET}"
[ "${OPENSSL}" = 'ON' ] && options+=" -DOPENSSL_ROOT_DIR=${openssl_root_win}"
[ -n "${CURLDEBUG:-}" ] && options+=" -DENABLE_CURLDEBUG=${CURLDEBUG}"
@ -62,7 +62,7 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
options+=" -B _bld${_chkprefill}"
fi
# shellcheck disable=SC2086
cmake -G "${PRJ_GEN}" ${TARGET:-} \
cmake -G "${PRJ_GEN}" ${TARGET} \
-DCMAKE_VS_GLOBALS=TrackFileAccess=false \
-DCMAKE_UNITY_BUILD="${UNITY}" -DCURL_TEST_BUNDLES=ON \
-DCURL_WERROR=ON \
@ -84,7 +84,7 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
echo 'curl_config.h'; grep -F '#define' _bld/lib/curl_config.h | sort || true
# shellcheck disable=SC2086
if ! cmake --build _bld --config "${PRJ_CFG}" --parallel 2 -- ${BUILD_OPT:-}; then
if [[ "${PRJ_GEN}" = 'Visual Studio 9 2008'* ]]; then
if [ "${PRJ_GEN}" = 'Visual Studio 9 2008' ]; then
find . -name BuildLog.htm -exec dos2unix '{}' +
find . -name BuildLog.htm -exec cat '{}' +
fi

View File

@ -70,14 +70,6 @@ environment:
SCHANNEL: 'ON'
SHARED: 'ON'
EXAMPLES: 'OFF'
- job_name: 'CMake, VS2008, Debug, x64, OpenSSL 1.0.2 + Schannel, Shared, Build-tests & examples'
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2013'
PRJ_GEN: 'Visual Studio 9 2008 Win64'
PRJ_CFG: Debug
OPENSSL: 'ON'
SCHANNEL: 'ON'
SHARED: 'ON'
EXAMPLES: 'OFF'
- job_name: 'CMake, VS2010, Debug, x64, Schannel, Shared, Build-tests & examples'
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
PRJ_GEN: 'Visual Studio 10 2010'