From d0cea7990b41ec6d9e1e137c374f9df3f5426b7e Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Fri, 26 Sep 2025 17:25:45 -0400 Subject: [PATCH] Reduce regular CI to keep caches smaller Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48cbfc8fd..105e7b79a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -266,6 +266,22 @@ jobs: - os: macos-14 python-version: "3.9" + # Avoid extra resources for linux build + # 3.9: Earliest + # 3.11: C++ has "pre 3.11" checks + # 3.13: Latest + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.10" + + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.11" + + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.12" + # Avoid extra resources for windows build - is-full-run: false os: windows-2022 @@ -465,6 +481,22 @@ jobs: - os: macos-14 python-version: "3.9" + # See above note + # 3.9: Earliest + # 3.11: C++ has "pre 3.11" checks + # 3.13: Latest + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.10" + + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.11" + + - is-full-run: false + os: ubuntu-24.04 + python-version: "3.12" + # Avoid extra resources for windows build - is-full-run: false os: windows-2022