-
Notifications
You must be signed in to change notification settings - Fork 14.2k
ci: run V8 source builds on Windows 2025 #31356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: codex/dev-drive-setup-ci
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -314,9 +314,9 @@ jobs: | |
| fail-fast: false | ||
| matrix: | ||
| include: | ||
| - runner: windows-2022 | ||
| - runner: windows-2025 | ||
| target: x86_64-pc-windows-msvc | ||
| - runner: windows-2022 | ||
| - runner: windows-2025 | ||
| target: aarch64-pc-windows-msvc | ||
|
Comment on lines
+315
to
318
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This moves the canary source-build producer to Useful? React with 👍 / 👎. |
||
|
|
||
| steps: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On current GitHub-hosted runners,
windows-2025no longer means the VS 2022 image: GitHub's June 2026 migration notice movedwindows-2025to Visual Studio 2026, while this job later runscargo +1.91.0 build --target ...-pc-windows-msvc; Rust 1.91.0 was released beforefind-msvc-tools0.1.5 added Visual Studio 2026 probing in its changelog, so these Windows source-build jobs can fail to locatelink.exe/MSVC when they start on the new image. If the upstream build must stay pinned to Rust 1.91, leave these entries onwindows-2022or install/select VS 2022 explicitly.Useful? React with 👍 / 👎.