diff --git a/mps/.github/workflows/build-and-test.yml b/mps/.github/workflows/build-and-test.yml index f13e4621f63..7e1b51ede2c 100644 --- a/mps/.github/workflows/build-and-test.yml +++ b/mps/.github/workflows/build-and-test.yml @@ -26,13 +26,17 @@ jobs: env: - CC: gcc - CC: clang + exclude: + - os: macos-latest + env: + - CC: gcc runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: configure - run: ./configure + run: CC=${{ matrix.env.cc }} ./configure - name: make run: make - name: make test