Skip to content

Commit f212aee

Browse files
authored
build: enable temporal on GHA macOS build
PR-URL: #61691 Refs: #60942 Refs: #58730 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 3ab9dd8 commit f212aee

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test-macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ env:
6868
PYTHON_VERSION: '3.14'
6969
XCODE_VERSION: '16.4'
7070
FLAKY_TESTS: keep_retrying
71+
RUSTC_VERSION: '1.82'
7172

7273
permissions:
7374
contents: read
@@ -95,6 +96,10 @@ jobs:
9596
allow-prereleases: true
9697
- name: Set up Xcode ${{ env.XCODE_VERSION }}
9798
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
99+
- name: Install Rust ${{ env.RUSTC_VERSION }}
100+
run: |
101+
rustup override set "$RUSTC_VERSION"
102+
rustup --version
98103
- name: Set up sccache
99104
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
100105
with:
@@ -124,7 +129,7 @@ jobs:
124129
df -h
125130
echo "::endgroup::"
126131
- name: Build
127-
run: make -C node build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
132+
run: make -C node build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn --v8-enable-temporal-support"
128133
- name: Free Space After Build
129134
run: df -h
130135
- name: Test

0 commit comments

Comments
 (0)