Skip to content

Commit

Permalink
Specify jdk8 home
Browse files Browse the repository at this point in the history
  • Loading branch information
alextu committed Sep 26, 2024
1 parent d26b057 commit d8249e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@ tasks.test {
systemProperties(
mapOf(
"hudson.model.DownloadService.noSignatureCheck" to true,
"jenkins.test.timeout" to 300 // override default timeout
"jenkins.test.timeout" to 300, // override default timeout
"jdk8.home" to javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(8)
}.get().metadata.installationPath.toString()
)
)
ignoreFailures = ciJenkinsBuild
Expand Down

0 comments on commit d8249e9

Please sign in to comment.