Skip to content

Commit

Permalink
Merge pull request #250 from AdamBrousseau/unblock_testing_failed_builds
Browse files Browse the repository at this point in the history
Do not error out if installer fails
  • Loading branch information
mahdipub authored Oct 31, 2024
2 parents 4125859 + 8b1e4e2 commit 38a9141
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,8 @@ class Build {
}
} catch (FlowInterruptedException e) {
currentBuild.result = 'FAILURE'
throw new Exception("[ERROR] Installer job timeout (${buildTimeouts.INSTALLER_JOBS_TIMEOUT} HOURS) has been reached OR the downstream installer job failed. Exiting...")
//throw new Exception("[ERROR] Installer job timeout (${buildTimeouts.INSTALLER_JOBS_TIMEOUT} HOURS) has been reached OR the downstream installer job failed. Exiting...")
context.println('[WARNING] Installer job was not successful.')
}
}
if (!env.JOB_NAME.contains('pr-tester') && context.JENKINS_URL.contains('adopt')) {
Expand Down

0 comments on commit 38a9141

Please sign in to comment.