From 6137dd5c1483676982919e0751e52260916dddaf Mon Sep 17 00:00:00 2001 From: Ian Duncan <76043277+dr8co@users.noreply.github.com> Date: Sun, 19 May 2024 23:14:31 +0300 Subject: [PATCH] Update the CI config --- .github/workflows/cmake-multi-platform.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index c30414f..81f14d9 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -16,24 +16,24 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] build_type: [ Debug, Release ] - c_compiler: [ gcc-13, clang, cl ] + c_compiler: [ gcc, clang, cl ] include: - os: windows-latest c_compiler: cl cpp_compiler: cl - os: ubuntu-latest - c_compiler: gcc-13 - cpp_compiler: g++-13 + c_compiler: gcc + cpp_compiler: g++ - os: ubuntu-latest c_compiler: clang - cpp_compiler: clang++-15 + cpp_compiler: clang++ - os: macos-latest c_compiler: clang cpp_compiler: clang++ exclude: - os: windows-latest - c_compiler: gcc-13 + c_compiler: gcc - os: windows-latest c_compiler: clang - os: ubuntu-latest @@ -41,7 +41,7 @@ jobs: - os: macos-latest c_compiler: cl - os: macos-latest - c_compiler: gcc-13 + c_compiler: gcc steps: - name: Install Ninja