From 8ac0dd2bd18eb2b24162d62b61bfaf5603286a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20M=C3=BCller-Widmann?= Date: Thu, 30 Jul 2026 23:51:18 +0200 Subject: [PATCH 1/2] Run x64 macOS tests on macOS-15-intel --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0781766..bc68618 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,16 +20,16 @@ jobs: os: - ubuntu-latest - windows-latest - - macOS-13 + - macOS-latest arch: - - x64 + - 'default' include: - - os: macOS-latest - arch: aarch64 + - os: macOS-15-intel + arch: x64 version: '1' steps: - uses: actions/checkout@v7 - - uses: julia-actions/setup-julia@latest + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} From 35fa88f2daf1727ff984df13ce12f78007c6f22d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20M=C3=BCller-Widmann?= Date: Thu, 30 Jul 2026 23:54:10 +0200 Subject: [PATCH 2/2] Simplify CI setup --- .github/workflows/CI.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bc68618..492626c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,7 @@ on: tags: '*' jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -21,18 +21,14 @@ jobs: - ubuntu-latest - windows-latest - macOS-latest - arch: - - 'default' include: - os: macOS-15-intel - arch: x64 version: '1' steps: - uses: actions/checkout@v7 - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - run: make -j env: CC: gcc