Skip to content

Commit

Permalink
Specify jdkHome for builds where it was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Dec 6, 2024
1 parent 304f99b commit 47ecac5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .teamcity/src/subprojects/build/core/JavaScriptBuild.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class JavaScriptBuild(private val jsEntry: JSEntry) : BuildType({
gradle {
name = "Build Js"
tasks = "cleanJsTest jsTest --no-parallel --continue --info -Penable-js-tests"
jdkHome = Env.JDK_LTS
setupDockerForJavaScriptTests(jsEntry)
}
}
Expand Down
1 change: 1 addition & 0 deletions .teamcity/src/subprojects/build/core/WasmJsBuild.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class WasmJsBuild(private val jsEntry: JSEntry) : BuildType({
gradle {
name = "Build Wasm Js"
tasks = "cleanWasmJsTest wasmJsTest --no-parallel --continue --info -Penable-js-tests"
jdkHome = Env.JDK_LTS
setupDockerForJavaScriptTests(jsEntry)
}
}
Expand Down
5 changes: 5 additions & 0 deletions .teamcity/src/subprojects/plugins/ProjectGradlePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ object ProjectGradlePlugin : Project({
name = "Publish"
tasks = ":plugin:publishPlugins"
gradleParams = "-PversionSuffix=eap-%build.counter%"
jdkHome = Env.JDK_LTS
}
}
}
Expand All @@ -47,6 +48,7 @@ object ProjectGradlePlugin : Project({
gradle {
name = "Publish"
tasks = ":plugin:publishPlugins"
jdkHome = Env.JDK_LTS
}
}
}
Expand All @@ -64,6 +66,7 @@ object ProjectGradlePlugin : Project({
name = "Publish"
tasks = ":plugin:publishPlugins"
gradleParams = "-PversionSuffix=beta-%build.counter%"
jdkHome = Env.JDK_LTS
}
}
}
Expand All @@ -86,6 +89,7 @@ object ProjectGradlePlugin : Project({
name = "Publish to Space Packages"
tasks = ":plugin:publish"
gradleParams = "-Pspace -PversionSuffix=eap-%build.counter%"
jdkHome = Env.JDK_LTS
}
}
}
Expand All @@ -110,6 +114,7 @@ object ProjectGradlePlugin : Project({
gradle {
name = "Run tests"
tasks = ":plugin:test test"
jdkHome = Env.JDK_LTS
}
}
}
Expand Down

0 comments on commit 47ecac5

Please sign in to comment.