Skip to content

Commit

Permalink
wip(ci): debug more
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mirwald committed Aug 15, 2024
1 parent 48960ae commit ed186ea
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ gradlePlugin {
dockerCompose {
useComposeFiles.set(listOf("docker-compose.yml"))
waitForTcpPorts.set(true)
captureContainersOutput.set(true)
captureContainersOutput.set(false)
stopContainers.set(true)
removeContainers.set(true)
buildBeforeUp.set(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class UploadBuildInformationOverwriteTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadBuildInformation")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
})
// .withEnvironment(System.getenv().toMutableMap().apply {
// val home = System.getProperty("user.home")
// put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
// })
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class UploadBuildInformationTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadBuildInformation")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
})
// .withEnvironment(System.getenv().toMutableMap().apply {
// val home = System.getProperty("user.home")
// put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
// })
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ class UploadPackageTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
})
// .withEnvironment(System.getenv().toMutableMap().apply {
// val home = System.getProperty("user.home")
// put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
// })
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class UploadPackageTaskWithInitialWaitIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
})
// .withEnvironment(System.getenv().toMutableMap().apply {
// val home = System.getProperty("user.home")
// put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
// })
.withPluginClasspath()
.build()
log.info(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class UploadPackageTaskWithWaitIntegrationTest {
val result = GradleRunner.create()
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withArguments("build", "uploadPackage", "--no-daemon")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("GITHUB_PATH", "$home/.local/bin:${get("GITHUB_PATH")}")
Expand Down

0 comments on commit ed186ea

Please sign in to comment.