[Wasm] Extract Fir compiler tests into :wasmFirCompilerTest task

This is needed to run K1 and K2 tests in parallel on separate CI agents
This commit is contained in:
Svyatoslav Kuzmich
2023-06-13 15:58:03 +02:00
parent 4ad6fd4cde
commit 29fa20e2aa
2 changed files with 39 additions and 17 deletions
+6 -1
View File
@@ -671,13 +671,18 @@ tasks {
}
register("wasmCompilerTest") {
dependsOn(":wasm:wasm.tests:test")
dependsOn(":wasm:wasm.tests:testK1")
dependsOn(":wasm:wasm.tests:diagnosticTest")
// Windows WABT release requires Visual C++ Redistributable
if (!kotlinBuildProperties.isTeamcityBuild || !org.gradle.internal.os.OperatingSystem.current().isWindows) {
dependsOn(":wasm:wasm.ir:test")
}
}
register("wasmFirCompilerTest") {
dependsOn(":wasm:wasm.tests:testFir")
}
register("nativeCompilerTest") {
dependsOn(":native:kotlin-native-utils:test")
}