Skip to content

Commit 5112cfa

Browse files
committed
Temporarily disable installGCCTools on windows arm64 to solve chicken-and-egg issue
1 parent ed177e1 commit 5112cfa

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

windows.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ export async function install(platform, engine, version) {
9090
// windows 2016 and 2019 need ucrt64 installed, 2022 and future images need
9191
// ucrt64 or mingw64 installed, depending on Ruby version
9292
if (((msys2Type === 'ucrt64') || !hasMSYS2PreInstalled) && common.floatVersion(version) >= 2.4) {
93-
await installGCCTools(msys2Type, version)
93+
// Temporarily disable installGCCTools on arm64 to solve chicken and egg issue.
94+
if (msys2Type !== 'clangarm64') {
95+
await installGCCTools(msys2Type, version)
96+
}
9497
}
9598

9699
if (version === 'mswin') {

0 commit comments

Comments
 (0)