Skip to content

Commit

Permalink
CI: don't specify arch
Browse files Browse the repository at this point in the history
This should fix issues with the macOS runners that now are actually
using arm64 / aarch64 hardware.
  • Loading branch information
fingolfin committed Nov 24, 2024
1 parent b3b1df9 commit b58e55f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -22,14 +22,14 @@ jobs:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
exclude:
- version: '1.6'
os: macOS-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
Expand Down

0 comments on commit b58e55f

Please sign in to comment.