From cd6b494be6f614da39215844f861d6a1fa83f848 Mon Sep 17 00:00:00 2001 From: Seppe Degryse <80254822+Griezn@users.noreply.github.com> Date: Sun, 10 Nov 2024 15:43:50 +0100 Subject: [PATCH 1/2] Removing windows branch --- .github/workflows/cmake-multi-platform.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 1cadfbe..dbcf59d 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -23,14 +23,10 @@ jobs: # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] build_type: [Release, Debug] c_compiler: [gcc, clang, cl] include: - - os: windows-latest - c_compiler: cl - cpp_compiler: cl - build_type: Release - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++ @@ -44,15 +40,6 @@ jobs: cpp_compiler: clang++ build_type: Debug exclude: - - os: windows-latest - c_compiler: gcc - - os: windows-latest - c_compiler: clang - - os: ubuntu-latest - c_compiler: cl - - os: windows-latest - c_compiler: cl - build_type: Debug - os: ubuntu-latest c_compiler: gcc build_type: Debug From 2f92938dcfdc53c56bee7c37555061b0af623ec3 Mon Sep 17 00:00:00 2001 From: Seppe Degryse <80254822+Griezn@users.noreply.github.com> Date: Sun, 10 Nov 2024 15:44:43 +0100 Subject: [PATCH 2/2] Removing cl compiler --- .github/workflows/cmake-multi-platform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index dbcf59d..f893c31 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -25,7 +25,7 @@ jobs: matrix: os: [ubuntu-latest] build_type: [Release, Debug] - c_compiler: [gcc, clang, cl] + c_compiler: [gcc, clang] include: - os: ubuntu-latest c_compiler: gcc