Skip to content

Commit 1c948e1

Browse files
committed
Use macos-15-intel runner for macOS x64
1 parent 6112409 commit 1c948e1

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/system.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
architecture: arm64
3131
python-version: '3.x'
3232
julia-version: 'nightly'
33-
- os: macos-latest
34-
architecture: x64 # agent is arm64 (runs under Rosetta)
33+
- os: macos-15-intel
34+
architecture: x64
3535
python-version: '3.x'
3636
julia-version: '1'
37-
- os: macos-latest
38-
architecture: x64 # agent is arm64 (runs under Rosetta)
37+
- os: macos-15-intel
38+
architecture: x64
3939
python-version: '3.x'
4040
julia-version: 'nightly'
4141
# 32 bit Windows:
@@ -70,16 +70,8 @@ jobs:
7070
architecture: ${{ matrix.architecture }}
7171
- name: Install numpy
7272
run: python -m pip install --user numpy
73-
if: ${{ !(matrix.os == 'macos-latest' && matrix.architecture == 'x64') }}
74-
- name: Install numpy (Rosetta)
75-
run: arch -x86_64 python -m pip install --user numpy
76-
if: ${{ matrix.os == 'macos-latest' && matrix.architecture == 'x64' }}
7773
- name: Install virtualenv
7874
run: python -m pip install virtualenv
79-
if: ${{ !(matrix.os == 'macos-latest' && matrix.architecture == 'x64') }}
80-
- name: Install virtualenv (Rosetta)
81-
run: arch -x86_64 python -m pip install virtualenv
82-
if: ${{ matrix.os == 'macos-latest' && matrix.architecture == 'x64' }}
8375
- run: virtualenv --version
8476
- name: Setup julia
8577
uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)