Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ pipeline {
Typically this will use https://github.com/IBM/OpenJCEPlus')
string(name: 'OPENJCEPLUS_BRANCH', defaultValue: '', description: '\
The OpenJCEPlus branch to be used. When not specified this will default to the branch scanned by this multibranch pipeline.')
choice(name: 'JAVA_VERSION', choices: ['26', '25', '24', '23', '22', '21', '17', '11'], description: '\
string(name: 'JAVA_VERSION', defaultValue: '26', description: '\
Specify the Java version your branch uses to build.')
string(name: 'JAVA_RELEASE', defaultValue: '', description: '\
Indicate a specific Java release that you want to use to build your branch.<br> \
Expand Down
8 changes: 5 additions & 3 deletions JenkinsfilePerformance
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright IBM Corp. 2025
* Copyright IBM Corp. 2025, 2026
*
* This code is free software; you can redistribute it and/or modify it
* under the terms provided by IBM in the LICENSE file that accompanied
Expand Down Expand Up @@ -215,7 +215,9 @@ def run(platform) {
}
}

externalLibrary.getJava(hardware, software)
withCredentials([usernamePassword(credentialsId: '7c1c2c28-650f-49e0-afd1-ca6b60479546', passwordVariable: 'ARTIFACTORY_PASSWORD', usernameVariable: 'ARTIFACTORY_USERNAME')]) {
externalLibrary.getJava(hardware, software)
}
echo "Java fetched"
externalLibrary.getBinaries(hardware, software)
echo "Binaries fetched"
Expand Down Expand Up @@ -301,7 +303,7 @@ pipeline {
Typically this will use https://github.com/IBM/OpenJCEPlus')
string(name: 'OPENJCEPLUS_BRANCH', defaultValue: '', description: '\
The OpenJCEPlus branch to be used. When not specified this will default to the branch scanned by this multibranch pipeline.')
choice(name: 'JAVA_VERSION', choices: ['25', '24', '23', '22', '21', '17', '11'], description: '\
string(name: 'JAVA_VERSION', defaultValue: '26', description: '\
Specify the Java version your branch uses to build.')
string(name: 'JAVA_RELEASE', defaultValue: '', description: '\
Indicate a specific Java release that you want to use to build your branch.<br> \
Expand Down