ref: 646fc62b89f10a9de203d3989a7e9a140557f88f
parent: 699c00dc20fac34ddccafa977bdb07072a3e13da
author: ISSOtm <eldredhabert0@gmail.com>
date: Mon Oct 25 21:39:05 EDT 2021
Avoid running duplicate CI on macOS `gcc` is just an alias to `clang` on macOS, so save on CI time.
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -10,6 +10,12 @@
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