From 6fb04ddcea24e84fc677bb0be467599650a56a90 Mon Sep 17 00:00:00 2001 From: nightmareci Date: Sat, 16 Nov 2024 15:46:50 -0800 Subject: [PATCH] Remove broken Windows GitHub actions --- .github/workflows/cmake-multi-platform.yml | 23 ++++++---------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 4db9950..485b006 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -1,4 +1,4 @@ -name: CMake on multiple platforms +name: CMake on Ubuntu on: push: @@ -14,31 +14,20 @@ jobs: # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. fail-fast: false - # Set up a matrix to run the following 3 configurations: - # 1. - # 2. - # 3. + # Set up a matrix to run the following 2 configurations: + # 1. + # 2. matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] build_type: [Release, Debug] - c_compiler: [gcc, clang, cl] + c_compiler: [gcc, clang] include: - - os: windows-latest - c_compiler: cl - cpp_compiler: cl - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++ - os: ubuntu-latest c_compiler: clang cpp_compiler: clang++ - exclude: - - os: windows-latest - c_compiler: gcc - - os: windows-latest - c_compiler: clang - - os: ubuntu-latest - c_compiler: cl steps: - uses: actions/checkout@v4