From c0c68b7acea94aed571dc50a2cd84d3d03c07110 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 13 Oct 2024 03:45:28 -0400 Subject: [PATCH 1/2] CI: the Julia 1.6 macOS job has to run on `macos-12` Because `macos-latest` now points to `macos-13`, and `macos-13` is Apple Silicon. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d5fff17..c070be7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,9 +40,14 @@ jobs: coverage: - 'true' - 'false' # needed for 1.9+ to test from a session using pkgimages + include: + - os: macOS-12 + julia-version: '1.6' exclude: - os: macOS-latest julia-arch: x86 + - os: macOS-latest + julia-version: '1.6' - julia-version: '1.6' coverage: 'false' - julia-version: '1.7' From a0c921255bf3a18edca57e83c86d0a85a00a5ca6 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 13 Oct 2024 03:49:05 -0400 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c070be7f..b12a7a2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ name: CI on: pull_request: - branches: - - 'master' - - 'release-*' + # branches: + # - 'master' + # - 'release-*' push: branches: - 'master'