From 84a11ffdf8949b1e902c2dc7b3d59c45ad262772 Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Wed, 13 Nov 2024 15:56:05 -0800 Subject: [PATCH] CI: correct PATH; exclude (macOS, GCC) case because macOS has clang already, and the additional cost of including tests on macOS with GCC does not seem motivated yet. --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1fd40df..0abcbf6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,12 @@ jobs: macos-latest, ] cc: ['gcc', 'clang'] + exclude: + - os: macos-latest + cc: gcc env: CC: ${{ matrix.cc }} + PATH: /opt/homebrew/opt/flex/bin:/opt/homebrew/opt/bison/bin:$PATH steps: - uses: actions/checkout@v4 - name: Install packages via Brew if macOS