Skip to content

Commit d4c3a7f

Browse files
andrlosjandrlik
authored andcommitted
Update testHeadlessComponents.jenkinsfile
editing default values for the CSD job run
1 parent c52dcef commit d4c3a7f

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

testHeadlessComponents.jenkinsfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
properties([
22
parameters([
33
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',
55
description: 'This controls the EBC shortlist to use when provisioning a Jenkins node.'),
66
string(name: 'ecosystemTracking', defaultValue: "",
77
description: 'Tracking Map as string often containing information about CI Orchestrator pipeline'),
88
string(name: 'JENKINS_JOBS_BRANCH', defaultValue: 'dev', description: 'Branch of Jenkins jobs to use for scripts execution'),
99
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'),
1111
string(name: 'TEST_SUITE_URL',
1212
defaultValue: 'https://github.com/rh-openjdk/TestHeadlessComponents.git',
1313
description: 'URL to download for prepared suites'),
1414
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',
1616
description: 'Test command to execute on the target machine'),
1717
string(name: 'GET_JAVA_COMMAND',
18-
defaultValue: 'sudo apt install -y default-jdk',
18+
defaultValue: 'sudo dnf install -y java-17-openjdk-devel',
1919
description: 'The command to get jdk installed.'),
2020
string(name: 'FILE_SERVER', defaultValue: '',
2121
description: 'File server where the final results and artifacts will be stored for Cognitive UI'),
@@ -63,6 +63,8 @@ properties([
6363
// Add a job-level Poll SCM trigger (Koji will be the polled SCM via checkout below)
6464
pipelineTriggers([
6565
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')
6668
])
6769
])
6870

0 commit comments

Comments
 (0)