]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
ci: Disable Windows 64-bit MSBuild jobs for now
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 17 Apr 2023 06:26:13 +0000 (08:26 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 17 Apr 2023 06:26:13 +0000 (08:26 +0200)
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.

.github/workflows/build.yaml

index 4cd2791db508a302a128f2b2b13ad040802be6b8..f5dcfc75c9fe546f6f0143a2eb053da9a2b8dee0 100644 (file)
@@ -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