From 05a0f3dcd1f7ee754587ac7aa22fcbfaec7f7142 Mon Sep 17 00:00:00 2001 From: Serge Lamikhov-Center Date: Wed, 13 Dec 2023 18:09:23 +0200 Subject: [PATCH] Exclude cl.exe build from Ubuntu-20-04 --- .github/workflows/c-cpp.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index d4d6506..de8e202 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -16,16 +16,6 @@ jobs: os: [ubuntu-latest, ubuntu-20.04, windows-latest] build_type: [Release, Debug] c_compiler: [gcc, 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++ exclude: - os: windows-latest c_compiler: gcc @@ -33,6 +23,8 @@ jobs: c_compiler: clang - os: ubuntu-latest c_compiler: cl + - os: ubuntu-20.04 + c_compiler: cl steps: - uses: actions/checkout@v3