[Wasm] Use Node.js with "canary" v8 (11.7.310.0) in tests

There are no other non-canary Node.js versions using fresh enough v8.
This commit is contained in:
Zalim Bashorov
2023-07-28 14:40:26 +02:00
committed by Space Team
parent cead5c8aae
commit 0bdee00ca2
@@ -8,7 +8,9 @@ repositories {
}
with(org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin.apply(rootProject)) {
nodeVersion = "20.2.0"
// canary nodejs that supports recent Wasm GC changes
nodeVersion = "21.0.0-v8-canary202307189734ce28be"
nodeDownloadBaseUrl = "https://nodejs.org/download/v8-canary"
}
with(org.jetbrains.kotlin.gradle.targets.js.d8.D8RootPlugin.apply(rootProject)) {