Skip to content

Commit 67319a2

Browse files
committed
revert linuxTargets removal
1 parent 7ea7607 commit 67319a2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

aws-crt-kotlin/build.gradle.kts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,20 @@ configureIosSimulatorTasks()
111111
// Publishing
112112
configurePublishing("aws-crt-kotlin")
113113

114+
val linuxTargets: List<String> = listOf(
115+
"linuxX64",
116+
"linuxArm64",
117+
)
118+
119+
// create a summary task that compiles all cross platform test binaries
120+
tasks.register("linuxTestBinaries") {
121+
linuxTargets.map {
122+
tasks.named("${it}TestBinaries")
123+
}.forEach { testTask ->
124+
dependsOn(testTask)
125+
}
126+
}
127+
114128
// run tests on specific JVM version
115129
val testJavaVersion = typedProp<String>("test.java.version")?.let {
116130
JavaLanguageVersion.of(it)

0 commit comments

Comments
 (0)