From 3fa120cd95535b541d599a0610e064c66b92845f Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 24 Apr 2024 12:08:37 -0400 Subject: [PATCH] Fix builds to macos-13 rather than latest due to bootstrap python incompatibilities (#33142) --- .github/workflows/build.yaml | 2 +- .github/workflows/darwin-tests.yaml | 2 +- .github/workflows/darwin.yaml | 2 +- .github/workflows/fuzzing-build.yaml | 2 +- .github/workflows/smoketest-darwin.yaml | 2 +- .github/workflows/tests.yaml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 68a68b9e146693..9642af44b7d354 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -382,7 +382,7 @@ jobs: build_darwin: name: Build on Darwin (clang, python_lib, simulated) timeout-minutes: 200 - runs-on: macos-latest + runs-on: macos-13 if: github.actor != 'restyled-io[bot]' steps: diff --git a/.github/workflows/darwin-tests.yaml b/.github/workflows/darwin-tests.yaml index 628e88d767d4dd..d426ac1c0b69a9 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -42,7 +42,7 @@ jobs: LSAN_OPTIONS: detect_leaks=1 malloc_context_size=40 suppressions=scripts/tests/chiptest/lsan-mac-suppressions.txt if: github.actor != 'restyled-io[bot]' - runs-on: macos-latest + runs-on: macos-13 steps: - uses: Wandalen/wretry.action@v1.0.36 diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index ce733a89d0c9e8..2538d0cd5f9b55 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -30,7 +30,7 @@ jobs: timeout-minutes: 210 if: github.actor != 'restyled-io[bot]' - runs-on: macos-latest + runs-on: macos-13 steps: - uses: Wandalen/wretry.action@v1.0.36 diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index fd857c00c933c1..7df1261bedb431 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -95,7 +95,7 @@ jobs: build_darwin_fuzzing: name: Build on Darwin timeout-minutes: 90 - runs-on: macos-latest + runs-on: macos-13 if: github.actor != 'restyled-io[bot]' steps: diff --git a/.github/workflows/smoketest-darwin.yaml b/.github/workflows/smoketest-darwin.yaml index e0ce15b7232740..0e0ce4aecdd912 100644 --- a/.github/workflows/smoketest-darwin.yaml +++ b/.github/workflows/smoketest-darwin.yaml @@ -30,7 +30,7 @@ jobs: timeout-minutes: 60 if: github.actor != 'restyled-io[bot]' - runs-on: macos-latest + runs-on: macos-13 steps: - uses: Wandalen/wretry.action@v1.0.36 diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9c313a8b2adc18..35952a62464f8a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -312,7 +312,7 @@ jobs: LSAN_OPTIONS: detect_leaks=1 suppressions=scripts/tests/chiptest/lsan-mac-suppressions.txt if: github.actor != 'restyled-io[bot]' - runs-on: macos-latest + runs-on: macos-13 steps: - uses: Wandalen/wretry.action@v1.0.36 @@ -700,7 +700,7 @@ jobs: TSAN_OPTIONS: "halt_on_error=1" if: github.actor != 'restyled-io[bot]' && false - runs-on: macos-latest + runs-on: macos-13 steps: - name: Checkout