Skip to content

Commit

Permalink
Merge pull request #249 from AdamBrousseau/unblock_testing_failed_builds
Browse files Browse the repository at this point in the history
Temporarily not block testing on failed build stages
  • Loading branch information
AdamBrousseau authored Oct 30, 2024
2 parents 1e2d2fc + 87efa36 commit ab4ee54
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2679,9 +2679,9 @@ class Build {

// Run Smoke Tests and AQA Tests
if (enableTests) {
if (currentBuild.currentResult != "SUCCESS") {
context.println('[ERROR] Build stages were not successful, not running AQA tests')
} else {
if (currentBuild.currentResult != "SUCCESS") {
context.println('[WARNING] Build stages were not successful.')
}
try {
//Set smoke tests blocking in release testing only
def smokeTestsResult = runSmokeTests()
Expand Down Expand Up @@ -2712,7 +2712,6 @@ class Build {
context.println(e.message)
currentBuild.result = 'FAILURE'
}
}
}

// Compare reproducible build if needed
Expand Down

0 comments on commit ab4ee54

Please sign in to comment.