Skip to content

Commit ed05e6a

Browse files
author
Adam Farley
authored
Add jdk21 to build health report (#702)
Signed-off-by: Adam Farley <[email protected]>
1 parent 4b70d15 commit ed05e6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/nightly_build_and_test_stats.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ node('worker') {
2424
def trssUrl = "${params.TRSS_URL}"
2525
def apiUrl = "${params.API_URL}"
2626
def slackChannel = "${params.SLACK_CHANNEL}"
27-
def featureReleases = [ 8, 11, 17, 20 ] // Consider making those parameters
27+
def featureReleases = [ 8, 11, 17, 20, 21 ] // Consider making those parameters
2828
def nightlyStaleDays = "${params.MAX_NIGHTLY_STALE_DAYS}"
2929
def amberBuildAlertLevel = params.AMBER_BUILD_ALERT_LEVEL ? params.AMBER_BUILD_ALERT_LEVEL as Integer : -99
3030
def amberTestAlertLevel = params.AMBER_TEST_ALERT_LEVEL ? params.AMBER_TEST_ALERT_LEVEL as Integer : -99
3131

32-
def healthStatus = [ 'jdk8': null, 'jdk11': null, 'jdk17': null, 'jdk20': null]
32+
def healthStatus = [ 'jdk8': null, 'jdk11': null, 'jdk17': null, 'jdk20': null, 'jdk21': null ]
3333
def testStats = []
3434

3535
stage('getPipelineStatus') {

0 commit comments

Comments
 (0)