From 191baf39450073f36ec172c42e899f11b00df277 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 15 Oct 2024 10:17:18 -0600 Subject: [PATCH] ci: change version of mac used on CI Use macos-latest instead of macos-13 --- .github/workflows/ci.yml | 5 ++--- .github/workflows/pr.yml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0f56ad4d..e35c14042 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,8 +61,7 @@ jobs: test-macos: timeout-minutes: 30 - # Use macos-13 runner to use intel chip. - runs-on: macos-13 + runs-on: macos-latest steps: # Because the checkout and setup node action is contained in the dev-infra repo, we must # checkout the repo to be able to run the action we have created. Other repos will skip @@ -71,4 +70,4 @@ jobs: - uses: ./github-actions/npm/checkout-and-setup-node - uses: ./github-actions/bazel/setup - run: yarn install --immutable - - run: yarn bazel test --test_tag_filters=macos --build_tests_only -- //... -//bazel/remote-execution/... + - run: yarn bazel test --sandbox_writable_path="$HOME/Library/Application Support" --test_tag_filters=macos --build_tests_only -- //... diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bcdf3d72b..3fe3230e5 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -72,8 +72,7 @@ jobs: test-macos: timeout-minutes: 30 - # Use macos-13 runner to use intel chip. - runs-on: macos-13 + runs-on: macos-latest steps: # Because the checkout and setup node action is contained in the dev-infra repo, we must # checkout the repo to be able to run the action we have created. Other repos will skip @@ -82,4 +81,4 @@ jobs: - uses: ./github-actions/npm/checkout-and-setup-node - uses: ./github-actions/bazel/setup - run: yarn install --immutable - - run: yarn bazel test --test_tag_filters=macos --build_tests_only -- //... -//bazel/remote-execution/... + - run: yarn bazel test --sandbox_writable_path="$HOME/Library/Application Support" --test_tag_filters=macos --build_tests_only -- //...