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