From: Joel Rosdahl Date: Mon, 17 Apr 2023 06:26:13 +0000 (+0200) Subject: ci: Disable Windows 64-bit MSBuild jobs for now X-Git-Tag: v4.8.1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=962f3118429517dcda790a50d26ea14102f7cf5a;p=thirdparty%2Fccache.git ci: Disable Windows 64-bit MSBuild jobs for now The Windows VS2019 64-bit MSBuild and Windows VS2022 64-bit MSBuild GitHub actions jobs have started failing on master due to some changes in the CI environment. See issue #1278. --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4cd2791db..f5dcfc75c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -325,16 +325,17 @@ jobs: CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON TEST_CC: clang -target x86_64-pc-windows-msvc - - name: Windows VS2019 64-bit MSBuild - os: windows-2019 - msvc_arch: x64 - allow_test_failures: true # For now, don't fail the build on failure - CC: cl - CXX: cl - ENABLE_CACHE_CLEANUP_TESTS: 1 - CMAKE_GENERATOR: Visual Studio 16 2019 - CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON -A x64 - TEST_CC: clang -target x86_64-pc-windows-msvc + # Issue: #1278 + # - name: Windows VS2019 64-bit MSBuild + # os: windows-2019 + # msvc_arch: x64 + # allow_test_failures: true # For now, don't fail the build on failure + # CC: cl + # CXX: cl + # ENABLE_CACHE_CLEANUP_TESTS: 1 + # CMAKE_GENERATOR: Visual Studio 16 2019 + # CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON -A x64 + # TEST_CC: clang -target x86_64-pc-windows-msvc - name: Windows VS2022 32-bit Ninja os: windows-2022 @@ -369,16 +370,17 @@ jobs: CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON TEST_CC: clang -target x86_64-pc-windows-msvc - - name: Windows VS2022 64-bit MSBuild - os: windows-2022 - msvc_arch: x64 - allow_test_failures: true # For now, don't fail the build on failure - CC: cl - CXX: cl - ENABLE_CACHE_CLEANUP_TESTS: 1 - CMAKE_GENERATOR: Visual Studio 17 2022 - CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON -A x64 - TEST_CC: clang -target x86_64-pc-windows-msvc + # Issue: #1278 + # - name: Windows VS2022 64-bit MSBuild + # os: windows-2022 + # msvc_arch: x64 + # allow_test_failures: true # For now, don't fail the build on failure + # CC: cl + # CXX: cl + # ENABLE_CACHE_CLEANUP_TESTS: 1 + # CMAKE_GENERATOR: Visual Studio 17 2022 + # CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON -A x64 + # TEST_CC: clang -target x86_64-pc-windows-msvc - name: Clang address & UB sanitizer os: ubuntu-20.04