From 35579692d9662f7947c94826b07dec19c560c683 Mon Sep 17 00:00:00 2001 From: Sergey Bogolepov Date: Fri, 1 Mar 2024 19:07:06 +0200 Subject: [PATCH] [Swift export] Move `swift-export-standalone` tests Move them under `nativeCompilerTest` for the sake of unification, and running under proper CI configuration. --- build.gradle.kts | 1 + native/swift/build.gradle.kts | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 16f93181092..2730fdafed6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -813,6 +813,7 @@ tasks { register("nativeCompilerTest") { dependsOn(":native:native.tests:test") dependsOn(":native:objcexport-header-generator:check") + dependsOn(":native:swift:swift-export-standalone:test") dependsOn(":kotlin-atomicfu-compiler-plugin:nativeTest") } diff --git a/native/swift/build.gradle.kts b/native/swift/build.gradle.kts index d03349d6a18..c0fc909a63d 100644 --- a/native/swift/build.gradle.kts +++ b/native/swift/build.gradle.kts @@ -7,7 +7,4 @@ tasks.register("sirAllTests") { ":native:swift:sir-compiler-bridge:test", ":native:swift:sir-printer:test" ) - if (kotlinBuildProperties.isKotlinNativeEnabled) { - dependsOn(":native:swift:swift-export-standalone:test") - } }