diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-16 12:06:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-16 12:06:20 +0200 |
| commit | 4281dc4999397ff8c5ff8d86b20c6a4f02adbb09 (patch) | |
| tree | 17e786802b112b65ea64cb6fa2beb90a225d799f /.github | |
| parent | 9c9380d158b799e732547200db3a32f43363ca72 (diff) | |
Attempt fix brew errors (#5345)
Disable macOS Intel for now.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 401fa9de4..dc728e6a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: fail-fast: false matrix: # MacOS 13 runs on Intel, 14 runs on ARM - os: [macos-13, macos-14, ubuntu-latest] + os: [macos-14, ubuntu-latest] runs-on: ${{ matrix.os }} name: ${{ matrix.os == 'macos-14' && 'MacOS ARM' || (matrix.os == 'macos-13' && 'MacOS Intel') || (matrix.os == 'ubuntu-latest' && 'Ubuntu') }} Build, Check, and Test timeout-minutes: 15 |