Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Brousseau <[email protected]>
  • Loading branch information
AdamBrousseau committed Jan 18, 2024
1 parent 2fcf191 commit 99d0b74
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1959,13 +1959,9 @@ class Build {
} else {
context.println "[CHECKOUT] Checking out to the user's temurin-build..."

context.println("BUILD_ARGS:$BUILD_ARGS")
context.println("env.BUILD_ARGS:$env.BUILD_ARGS")
repoHandler.setUserDefaultsJson(context, DEFAULTS_JSON)
repoHandler.checkoutUserBuild(context)
printGitRepoInfo()
context.println("BUILD_ARGS:$BUILD_ARGS")
context.println("env.BUILD_ARGS:$env.BUILD_ARGS")
if (buildConfig.VARIANT == "openj9") {
def openjceplusBuildArgs = ''
if (DEFAULTS_JSON['bundle-openjceplus'] == true) {
Expand All @@ -1975,13 +1971,13 @@ class Build {
openjceplusBuildArgs = '--bundle-openjceplus'
}
}
//context.withEnv(['BUILD_ARGS=' + openjceplusBuildArgs]) {
context.withEnv(['BUILD_ARGS=' + openjceplusBuildArgs]) {
context.sshagent(['83181e25-eea4-4f55-8b3e-e79615733226']) {
context.withCredentials([context.usernamePassword(credentialsId: '7c1c2c28-650f-49e0-afd1-ca6b60479546', passwordVariable: 'GSKIT_PASSWORD', usernameVariable: 'GSKIT_USERNAME')]) {
context.sh(script: "./${DEFAULTS_JSON['scriptDirectories']['buildfarm']}")
}
}
//}
}
} else {
context.sh(script: "./${DEFAULTS_JSON['scriptDirectories']['buildfarm']}")
}
Expand Down

0 comments on commit 99d0b74

Please sign in to comment.