From 3d779244f8fdf2a58aaee0301db05025d539e168 Mon Sep 17 00:00:00 2001 From: Felix Kutzner Date: Sat, 13 Apr 2024 18:39:15 +0300 Subject: [PATCH] CI: Try using newer compilers https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md suggests that GCC 13 and Clang 15 are installed on the build VM. --- .github/workflows/cmake-multi-platform.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index d1f0beb..e04e851 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -31,11 +31,11 @@ jobs: c_compiler: cl cpp_compiler: cl - os: ubuntu-latest - c_compiler: gcc - cpp_compiler: g++ + c_compiler: gcc-13 + cpp_compiler: g++-13 - os: ubuntu-latest - c_compiler: clang - cpp_compiler: clang++ + c_compiler: clang-15 + cpp_compiler: clang++-15 exclude: - os: windows-latest c_compiler: gcc