Skip to content

Commit

Permalink
Use vararg instead of list & add FIXME to enable native builds later
Browse files Browse the repository at this point in the history
  • Loading branch information
0marperez committed Oct 4, 2024
1 parent d465c50 commit 73f694a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ private fun runSmokeTests(service: String, envVars: Map<String, String> = emptyM
val sdkRootDir = System.getProperty("user.dir") + "/../../../"
val runner = GradleRunner.create()
.withProjectDir(File(sdkRootDir))
.withArguments(listOf("-Paws.kotlin.native=false", ":tests:codegen:smoke-tests:services:$service:smokeTest"))
// FIXME: Remove `-Paws.kotlin.native=false` when Kotlin Native is ready
.withArguments("-Paws.kotlin.native=false", ":tests:codegen:smoke-tests:services:$service:smokeTest")
.withEnvironment(envVars)
.build()

Expand Down

0 comments on commit 73f694a

Please sign in to comment.