Our self-hosted Apple Silicon runner now has been migrated to actions/runner v2.292.0 which now supports arm64 natively (#87)

This commit is contained in:
Mirko Galimberti 2022-05-25 20:40:02 +02:00 committed by GitHub
parent 4635143e2f
commit 9c0ca61c0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -6,10 +6,7 @@ jobs:
build:
name: "build (${{ matrix.runs_on }}, ${{ matrix.python }})"
defaults:
run:
shell: ${{ matrix.run_wrapper || 'bash --noprofile --norc -eo pipefail {0}' }}
runs-on: ${{ matrix.runs_on || 'macos-latest' }}
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
include:
@ -22,10 +19,8 @@ jobs:
- runs_on: macos-latest
python: "3.10"
- runs_on: apple-silicon-m1
run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
python: "3.9.11"
- runs_on: apple-silicon-m1
run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
python: "3.10.3"
steps:
- uses: actions/checkout@v2