From ee74250afecc0f2686d3de644bcf0697f8bfc5bd Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 17 Nov 2024 23:07:32 -0500 Subject: [PATCH] update readme --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a20b3d50..045e39a6 100644 --- a/README.md +++ b/README.md @@ -194,12 +194,18 @@ jobs: strategy: matrix: julia-version: ['1.0', '1.2.0', '^1.3.0-rc1'] - julia-arch: [x64, x86] + julia-arch: [x64, x86, aarch64] os: [ubuntu-latest, windows-latest, macOS-latest] - # 32-bit Julia binaries are not available on macOS + # exclude unavailable/unwanted architectures exclude: - os: macOS-latest julia-arch: x86 + - os: macOS-latest + julia-arch: x64 # can be run but via rosetta on apple silicon runners + - os: ubuntu-latest + julia-arch: aarch64 + - os: windows-latest + julia-arch: aarch64 steps: - uses: actions/checkout@v4