From 646fc62b89f10a9de203d3989a7e9a140557f88f Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Tue, 26 Oct 2021 01:39:05 +0200 Subject: [PATCH] Avoid running duplicate CI on macOS `gcc` is just an alias to `clang` on macOS, so save on CI time. --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index b1e850d3..515f78c1 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -10,6 +10,12 @@ jobs: os: [ubuntu-20.04, ubuntu-18.04, macos-11.0, macos-10.15] cc: [gcc, clang] buildsys: [make, cmake] + exclude: + # `gcc` is just an alias to `clang` on macOS, don't bother + - os: macos-10.15 + cc: gcc + - os: macos-11.0 + cc: gcc include: - os: ubuntu-18.04 cc: gcc