Skip to content

Commit

Permalink
wip(ci): fix itests
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mirwald committed Aug 14, 2024
1 parent 65211c7 commit e7e00eb
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class UploadBuildInformationOverwriteTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadBuildInformation")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("PATH", "$home/.local/bin:${get("PATH")}")
})
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class UploadBuildInformationTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadBuildInformation")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("PATH", "$home/.local/bin:${get("PATH")}")
})
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ class UploadPackageTaskIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("PATH", "$home/.local/bin:${get("PATH")}")
})
.withPluginClasspath()
.build()
println(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ class UploadPackageTaskWithInitialWaitIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("PATH", "$home/.local/bin:${get("PATH")}")
})
.withPluginClasspath()
.build()
log.info(result.output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class UploadPackageTaskWithWaitIntegrationTest {
.forwardOutput()
.withProjectDir(testProjectDir.root)
.withArguments("build", "uploadPackage")
.withEnvironment(System.getenv().toMutableMap().apply {
val home = System.getProperty("user.home")
put("PATH", "$home/.local/bin:${get("PATH")}")
})
.withPluginClasspath()
.build()
println(result.output)
Expand Down

0 comments on commit e7e00eb

Please sign in to comment.