Skip to content

Commit

Permalink
Fix test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Mar 1, 2024
1 parent 3a41433 commit c59086b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeSimulatorTest
import org.jetbrains.kotlin.konan.target.KonanTarget

group = Library.group
Expand Down Expand Up @@ -41,6 +42,13 @@ kotlin {
tvosSimulatorArm64()
}

tasks {
// CI does not seem to like simulators
withType<KotlinNativeSimulatorTest> {
enabled = false
}
}

mavenPublishing {
coordinates(artifactId = Library.name)
publishToMavenCentral()
Expand Down

0 comments on commit c59086b

Please sign in to comment.