|
1 | 1 | properties([ |
2 | 2 | parameters([ |
3 | 3 | string(name: 'executionId', defaultValue: UUID.randomUUID().toString(), description: 'Unique execution ID'), |
4 | | - string(name: 'ebcShortlist', defaultValue: 'rh-openjdk-qe-rhel9-jenkins.yml', |
| 4 | + string(name: 'ebcShortlist', defaultValue: 'rh-openjdk-qe-rhel9-jenkins_medium.yml', |
5 | 5 | description: 'This controls the EBC shortlist to use when provisioning a Jenkins node.'), |
6 | 6 | string(name: 'ecosystemTracking', defaultValue: "", |
7 | 7 | description: 'Tracking Map as string often containing information about CI Orchestrator pipeline'), |
8 | 8 | string(name: 'JENKINS_JOBS_BRANCH', defaultValue: 'dev', description: 'Branch of Jenkins jobs to use for scripts execution'), |
9 | 9 | string(name: 'JENKINS_JOBS_ORG', defaultValue: 'cognitive-software-delivery', description: 'GitHub Org of Jenkins jobs to use for scripts execution'), |
10 | | - string(name: 'TEST_SUITE_BRANCH', defaultValue: 'main', description: 'Branch to test'), |
| 10 | + string(name: 'TEST_SUITE_BRANCH', defaultValue: 'dev', description: 'Branch to test'), |
11 | 11 | string(name: 'TEST_SUITE_URL', |
12 | 12 | defaultValue: 'https://github.com/rh-openjdk/TestHeadlessComponents.git', |
13 | 13 | description: 'URL to download for prepared suites'), |
14 | 14 | string(name: 'TEST_COMMAND', |
15 | | - defaultValue: 'export TEST_JDK_HOME=/usr/lib/jvm/default-java JAVA_TO_TEST=/usr/lib/jvm/default-java/bin/java OJDK_VERSION_NUMBER=17 JREJDK=jdk TMPRESULTS=tmpresults ; bash testHeadlessComponents.sh ; ls', |
| 15 | + defaultValue: 'export TEST_JDK_HOME=/usr/lib/jvm/java-17-openjdk JAVA_TO_TEST=/usr/lib/jvm/java-17-openjdk/bin/java OJDK_VERSION_NUMBER=17 JREJDK=jdk TMPRESULTS=tmpresults ; bash testHeadlessComponents.sh ; ls', |
16 | 16 | description: 'Test command to execute on the target machine'), |
17 | 17 | string(name: 'GET_JAVA_COMMAND', |
18 | | - defaultValue: 'sudo apt install -y default-jdk', |
| 18 | + defaultValue: 'sudo dnf install -y java-17-openjdk-devel', |
19 | 19 | description: 'The command to get jdk installed.'), |
20 | 20 | string(name: 'FILE_SERVER', defaultValue: '', |
21 | 21 | description: 'File server where the final results and artifacts will be stored for Cognitive UI'), |
@@ -63,6 +63,8 @@ properties([ |
63 | 63 | // Add a job-level Poll SCM trigger (Koji will be the polled SCM via checkout below) |
64 | 64 | pipelineTriggers([ |
65 | 65 | pollSCM('H/5 * * * *') // poll every ~5 minutes; adjust to taste |
| 66 | + string(name: 'REPORTING_JVM', defaultValue: 'REDHAT_JDK_17', |
| 67 | + description: 'The JVM value to report to cognitive') |
66 | 68 | ]) |
67 | 69 | ]) |
68 | 70 |
|
|
0 commit comments