From 8b23397c38a5ac7c3631d10ecdb60e249799d736 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Fri, 11 Oct 2024 12:14:42 +0100 Subject: [PATCH] ci: pypy 3.7 macos on x64 still --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4be66bac11e..81a0b04e9ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -350,6 +350,15 @@ jobs: python-architecture: "x64", rust-target: "x86_64-apple-darwin", } + # pypy macOS support came in 3.8 + - rust: stable + python-version: "pypy3.7" + platform: + { + os: "macos-13", + python-architecture: "x64", + rust-target: "x86_64-apple-darwin", + } exclude: # ubuntu-latest (24.04) no longer supports 3.7 @@ -380,6 +389,15 @@ jobs: python-architecture: "arm64", rust-target: "aarch64-apple-darwin", } + # pypy macOS support came in 3.8 + - rust: stable + python-version: "pypy3.7" + platform: + { + os: "macos-latest", + python-architecture: "arm64", + rust-target: "aarch64-apple-darwin", + } valgrind: if: ${{ contains(github.event.pull_request.labels.*.name, 'CI-build-full') || github.event_name != 'pull_request' }}