summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2023-04-17 08:26:13 +0200
committerJoel Rosdahl <joel@rosdahl.net>2023-04-17 08:26:13 +0200
commit962f3118429517dcda790a50d26ea14102f7cf5a (patch)
tree9568006f8ad988e4de16eb97e9d7b19a202fcd54
parente9d33e4f5edb23c7db661c6cbb451fb45c573f67 (diff)
downloadccache-962f3118429517dcda790a50d26ea14102f7cf5a.tar.gz
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.
-rw-r--r--.github/workflows/build.yaml42
1 files changed, 22 insertions, 20 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 4cd2791d..f5dcfc75 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