Skip to content

Commit

Permalink
Revert ".github: disable macOS runners for now"
Browse files Browse the repository at this point in the history
This reverts commit 1faf041.

The problem is specific to the GMP tests, not the library tests.
Instead, disable the compat tests (for now).
  • Loading branch information
creachadair committed Jan 25, 2025
1 parent 7e9dcb3 commit 02e154f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest]
compiler: ['gcc', 'clang']
exclude:
- os: macos-latest
compiler: gcc # gcc is clang on macOS

runs-on: ${{ matrix.os }}

Expand All @@ -30,5 +33,10 @@ jobs:
"$CC" --version
- name: make test # unit tests
run: make test
- name: make check # unit and compatibility tests
run: make check
# TODO(creachadair): As of 25-Jan-2024, the GMP compatibility tests
# no longer work correctly when run in containers either locally or
# in github actions. They work fine from the CLI, but for now turn
# them off in CI.
#
#- name: make check # unit and compatibility tests
# run: make check

0 comments on commit 02e154f

Please sign in to comment.