From 376a8c64f578a1e30d12b9bc2dfa695af65a4497 Mon Sep 17 00:00:00 2001 From: Austin Eng Date: Tue, 31 Oct 2023 13:44:01 -0700 Subject: [PATCH] Remove GCC build for now; add Debug builds Change-Id: I25612d668bd40ad1cbc68388eadfee8dc0ec99c4 --- .github/workflows/cmake.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 5a1b14819ec..8a879a05b58 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,23 +15,19 @@ jobs: fail-fast: false # Set up a matrix to run the following 3 configurations: - # 1. - # 2. - # 3. - # 4. + # 1. + # 2. + # 3. # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: os: [ubuntu-latest, windows-latest, macos-latest] - build_type: [Release] - c_compiler: [gcc, clang, cl] + build_type: [Debug, Release] + c_compiler: [clang, cl] 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++ @@ -39,14 +35,10 @@ jobs: 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 - - os: macos-latest - c_compiler: gcc - os: macos-latest c_compiler: cl