diff options
author | Martin Pool <mbp@sourcefrog.net> | 2024-10-15 08:09:14 -0700 |
---|---|---|
committer | Martin Pool <mbp@sourcefrog.net> | 2024-10-15 08:09:14 -0700 |
commit | 0f499bc33a6db5820e3f775887d72dfd026b5886 (patch) | |
tree | 98e5d46248e1606fc44caa831b24d1d7337b94b8 | |
parent | 8a290663389a705390328195201835127044aefc (diff) |
fix: disable macOS CI for noworigin/ci-macos
blocked on #524
-rw-r--r-- | .github/workflows/c-build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/c-build.yml b/.github/workflows/c-build.yml index 3e9664f..35a5e7c 100644 --- a/.github/workflows/c-build.yml +++ b/.github/workflows/c-build.yml @@ -10,7 +10,7 @@ jobs: make_check: strategy: matrix: - os: [ubuntu-latest, macOS-latest] # , windows-latest] + os: [ubuntu-latest] # macOS-latest is disabled due to https://github.com/distcc/distcc/issues/524 fail-fast: false runs-on: ${{ matrix.os }} steps: |