Skip to content

Commit

Permalink
Remove setting the java environment during check
Browse files Browse the repository at this point in the history
  • Loading branch information
Azurelol committed Aug 30, 2023
1 parent 6aa475e commit b2369ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars/buildUnityWdkV3.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,12 @@ def call(Map configMap = [unityVersions: []]) {
steps {
script {
parallel paket: {
withEnv(["UNITY_PACKAGE_MANAGER=paket", "JAVA_HOME=${env.JAVA_11_HOME}"]) {
withEnv(["UNITY_PACKAGE_MANAGER=paket"]) {
parallel checkSteps(config, "paket check unity ", "paket_setup_w")
}
},
upm: {
withEnv(["UNITY_PACKAGE_MANAGER=upm", "JAVA_HOME=${env.JAVA_11_HOME}"]) {
withEnv(["UNITY_PACKAGE_MANAGER=upm"]) {
parallel checkSteps(config, "upm check unity ", "upm_setup_w")
}
},
Expand Down

0 comments on commit b2369ee

Please sign in to comment.