From 51e17a680fa87b44e8384888378e104b06145986 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Wed, 7 Feb 2024 15:48:36 -0500 Subject: [PATCH] Drop py3.8 and py3.9 from macos-14 Signed-off-by: Tim Paine --- .github/workflows/build.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2a6633d..6537141f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -214,13 +214,21 @@ jobs: ############################################## # Things to exclude if not a full matrix run # ############################################## + # mac arm builds support py3.10+ + - os: macos-14 + python-version: "3.8" + - os: macos-14 + python-version: "3.9" + # minimize CI resource usage - is-full-run: false os: ubuntu-22.04 python-version: "3.8" + # windows is slow, so dont build unless its a full run - - is-full-run: false - os: windows-2022 + # - is-full-run: false + # os: windows-2022 + # avoid unnecessary use of mac resources - is-full-run: false os: macos-12 @@ -391,9 +399,15 @@ jobs: ############################################## # Things to exclude if not a full matrix run # ############################################## + # mac arm builds support py3.10+ + - os: macos-14 + python-version: "3.8" + - os: macos-14 + python-version: "3.9" + # Exclude windows builds - - is-full-run: false - os: windows-2022 + # - is-full-run: false + # os: windows-2022 # Exclude macOS builds for now - is-full-run: false