Skip to content

Commit 64eb48b

Browse files
Correction to CI worker settings for macos (#499)
* Update mac runners to handle Intel/ARM properly
1 parent b593c8e commit 64eb48b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/ci-pre.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ on:
1414
push:
1515
branches:
1616
- master
17-
tags: '*'
17+
tags:
18+
- '*'
1819
jobs:
1920
test:
2021
name: Julia pre - ubuntu-latest - x64 - ${{ github.event_name }}

.github/workflows/ci.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ on:
1414
push:
1515
branches:
1616
- master
17-
tags: '*'
17+
tags:
18+
- '*'
1819
jobs:
1920
test:
20-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
21+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
2122
runs-on: ${{ matrix.os }}
2223
strategy:
2324
fail-fast: false
@@ -28,19 +29,13 @@ jobs:
2829
os:
2930
- ubuntu-latest
3031
- macos-latest
32+
- macos-15-intel
3133
- windows-latest
32-
arch:
33-
- x64
34-
include:
35-
- version: '1'
36-
os: macos-latest
37-
arch: aarch64
3834
steps:
3935
- uses: actions/checkout@v6
4036
- uses: julia-actions/setup-julia@v2
4137
with:
4238
version: ${{ matrix.version }}
43-
arch: ${{ matrix.arch }}
4439
- uses: julia-actions/cache@v2
4540
- uses: julia-actions/julia-buildpkg@v1
4641
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)