From b72aebaba2ecf5dce1a02f67f08c97d2e2969439 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 4 May 2024 18:06:13 +0100 Subject: [PATCH] fixup! ci: Test CMake edge cases Bump clang to version 16 in the "Linux 32-bit" CI job to avoid false positive `-Wunreachable-code` warnings. Link to libatomic is still required. --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f86509c32e664..81023747ff635 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -273,9 +273,9 @@ jobs: host: - name: 'Linux 32-bit, Clang, link to libatomic' triplet: 'i686-pc-linux-gnu' - packages: 'clang-15 g++-multilib' - c_compiler: 'clang-15 -m32' - cxx_compiler: 'clang++-15 -m32' + packages: 'clang-16 g++-multilib' + c_compiler: 'clang-16 -m32' + cxx_compiler: 'clang++-16 -m32' depends_options: '' configure_options: '-DWERROR=ON' - name: 'Linux 64-bit, multiprocess'