Disable wasm-wasi stdlib tests execution unless kotlin.stdlib.wasi.tests property is specified

Reason: unstable on CI
KT-62694
This commit is contained in:
Ilya Gorbunov
2023-10-18 20:50:24 +02:00
committed by Space Team
parent f630a27f14
commit 892719171b
+5
View File
@@ -672,6 +672,11 @@ tasks {
kotlinOptions.freeCompilerArgs += listOf("-Xwasm-enable-array-range-checks")
}
}
val wasmWasiNodeTest by existing {
if (!kotlinBuildProperties.getBoolean("kotlin.stdlib.wasi.tests")) {
enabled = false
}
}
/*
We are using a custom 'kotlin-project-structure-metadata' to ensure 'nativeApiElements' lists 'commonMain' as source set