Skip to content

Commit

Permalink
Fix a Jenkinsfile test result collection bug (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 8, 2024
1 parent 2f9013b commit f01055d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def runTests(Map params = [:]) {
if (params['platform'] == 'windows') {
agentContainerLabel += '-windows'
}
boolean publishing = params['jdk'] == 11 && params['platform'] == 'linux'
boolean publishing = params['jdk'] == 17 && params['platform'] == 'linux'
node(agentContainerLabel) {
timeout(time: 1, unit: 'HOURS') {
def stageIdentifier = params['platform'] + '-' + params['jdk']
Expand Down

0 comments on commit f01055d

Please sign in to comment.