From 10303d85a84623eaa99d89bf7556d39cc1ddbf54 Mon Sep 17 00:00:00 2001 From: Tom Atkinson Date: Mon, 11 Mar 2024 20:06:37 +0000 Subject: [PATCH] Only run macos-14 on main --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fcfd255f..10b72c24c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: build_type: [Debug, Release] env: PARALLEL: -j 2 + # only run macos-14 on main due to slower provisioning times + if: ${{ github.ref == 'refs/heads/main' || matrix.platform.runtime != 'macos-14' }} runs-on: "${{ matrix.platform.runtime }}" steps: - uses: actions/checkout@v3