From 17a3a23cb366d2338fe1e1f954deb8ac5a780aba Mon Sep 17 00:00:00 2001 From: Uwe Fechner Date: Fri, 2 Aug 2024 19:56:34 +0200 Subject: [PATCH 1/2] Do not run old Julia versions on ARM --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d5fff17..67a020f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,13 +42,16 @@ jobs: - 'false' # needed for 1.9+ to test from a session using pkgimages exclude: - os: macOS-latest - julia-arch: x86 + julia-version: '1.6' - julia-version: '1.6' coverage: 'false' - julia-version: '1.7' coverage: 'false' - julia-version: '1.8' coverage: 'false' + include: + - os: macos-13 # Intel + julia-version: '1.6' steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@latest From acd09ed99e9f6f001fa4f54d4a591bd6f4f46c04 Mon Sep 17 00:00:00 2001 From: Uwe Fechner Date: Fri, 2 Aug 2024 20:04:04 +0200 Subject: [PATCH 2/2] Allow failures on Julia nightly --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67a020f9..7e3cd714 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,8 @@ jobs: include: - os: macos-13 # Intel julia-version: '1.6' + allow_failures: + - julia_version: nightly steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@latest