mirror of
https://github.com/apple/pkl.git
synced 2026-01-11 22:30:54 +01:00
Fix IDEA gradle project sync on Windows Aarch64 (#1353)
This commit is contained in:
@@ -69,6 +69,9 @@ val assembleNative by
|
||||
buildInfo.os.isWindows && buildInfo.targetArch == "amd64" -> {
|
||||
wraps(assembleNativeWindowsAmd64)
|
||||
}
|
||||
buildInfo.os.isWindows && buildInfo.targetArch == "aarch64" -> {
|
||||
logger.warn("Windows Aarch64 is not supported by GraalVM, skipping assembleNative")
|
||||
}
|
||||
buildInfo.musl -> {
|
||||
throw GradleException("Building musl on ${buildInfo.os} is not supported")
|
||||
}
|
||||
@@ -106,6 +109,9 @@ val testNative by
|
||||
buildInfo.os.isWindows && buildInfo.targetArch == "amd64" -> {
|
||||
dependsOn(testNativeWindowsAmd64)
|
||||
}
|
||||
buildInfo.os.isWindows && buildInfo.targetArch == "aarch64" -> {
|
||||
logger.warn("Windows Aarch64 is not supported by GraalVM, skipping testNative")
|
||||
}
|
||||
buildInfo.musl -> {
|
||||
throw GradleException("Building musl on ${buildInfo.os} is not supported")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user