35579692d9
Move them under `nativeCompilerTest` for the sake of unification, and running under proper CI configuration.
11 lines
177 B
Kotlin
11 lines
177 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
tasks.register("sirAllTests") {
|
|
dependsOn(
|
|
":native:swift:sir-compiler-bridge:test",
|
|
":native:swift:sir-printer:test"
|
|
)
|
|
}
|