From 461bb3741191da41a0b9c01c31d12c745b2bac23 Mon Sep 17 00:00:00 2001 From: David Dight Date: Sun, 31 Mar 2024 09:21:58 +1100 Subject: [PATCH 1/2] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 400a9702..03d16d29 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -14,8 +14,17 @@ on: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release - CC: gcc-13 - CXX: g++-13 + +strategy: + matrix: + include: + - cpp_compiler: g++-latest + c_compiler: gcc-latest + - cpp_compiler: clang++-latest + c_compiler: clang-latest + + #CC: gcc-latest + #CXX: g++-latest jobs: linux: From 50cb248719d22e24fc1aedc88646b794c71e3b0d Mon Sep 17 00:00:00 2001 From: David Dight Date: Sun, 31 Mar 2024 09:31:51 +1100 Subject: [PATCH 2/2] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 03d16d29..4f422fd3 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -10,6 +10,7 @@ on: - '**/*.yml' pull_request: branches: [ "master" ] + workflow_dispatch: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)