Skip to content

Commit 6a7bc4b

Browse files
committed
ci: change version of mac used on CI (#2388)
Use macos-latest instead of macos-13 PR Close #2388
1 parent 3cfac69 commit 6a7bc4b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ jobs:
6161

6262
test-macos:
6363
timeout-minutes: 30
64-
# Use macos-13 runner to use intel chip.
65-
runs-on: macos-13
64+
runs-on: macos-latest
6665
steps:
6766
# Because the checkout and setup node action is contained in the dev-infra repo, we must
6867
# checkout the repo to be able to run the action we have created. Other repos will skip
@@ -71,4 +70,4 @@ jobs:
7170
- uses: ./github-actions/npm/checkout-and-setup-node
7271
- uses: ./github-actions/bazel/setup
7372
- run: yarn install --immutable
74-
- run: yarn bazel test --test_tag_filters=macos --build_tests_only -- //... -//bazel/remote-execution/...
73+
- run: yarn bazel test --sandbox_writable_path="$HOME/Library/Application Support" --test_tag_filters=macos --build_tests_only -- //...

.github/workflows/pr.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ jobs:
7272

7373
test-macos:
7474
timeout-minutes: 30
75-
# Use macos-13 runner to use intel chip.
76-
runs-on: macos-13
75+
runs-on: macos-latest
7776
steps:
7877
# Because the checkout and setup node action is contained in the dev-infra repo, we must
7978
# checkout the repo to be able to run the action we have created. Other repos will skip
@@ -82,4 +81,4 @@ jobs:
8281
- uses: ./github-actions/npm/checkout-and-setup-node
8382
- uses: ./github-actions/bazel/setup
8483
- run: yarn install --immutable
85-
- run: yarn bazel test --test_tag_filters=macos --build_tests_only -- //... -//bazel/remote-execution/...
84+
- run: yarn bazel test --sandbox_writable_path="$HOME/Library/Application Support" --test_tag_filters=macos --build_tests_only -- //...

0 commit comments

Comments
 (0)