Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow user to set JCK_GIT_BRANCH in testJobTemplate #4124

Merged
merged 1 commit into from
Nov 8, 2022
Merged
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
5 changes: 3 additions & 2 deletions buildenv/jenkins/testJobTemplate
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ if (!binding.hasVariable('TRSS_URL')) TRSS_URL = ""
if (!binding.hasVariable('SUFFIX')) SUFFIX = ""
if (!binding.hasVariable('JCK_GIT_REPO')) JCK_GIT_REPO = ""
if (!binding.hasVariable('JCK_GIT_REPO_PREFIX')) JCK_GIT_REPO_PREFIX = ""
if (!binding.hasVariable('JCK_GIT_BRANCH')) JCK_GIT_BRANCH = "master"
if (!binding.hasVariable('SSH_AGENT_CREDENTIAL')) SSH_AGENT_CREDENTIAL = ""
if (!binding.hasVariable('KEEP_REPORTDIR')) KEEP_REPORTDIR = true
if (!binding.hasVariable('AUTO_DETECT')) AUTO_DETECT = true
Expand Down Expand Up @@ -228,8 +229,8 @@ ARCH_OS_LIST.each { ARCH_OS ->
stringParam('ADOPTOPENJDK_SYSTEMTEST_OWNER_BRANCH', "adoptium:master", "Personal Adoptium/aqa-systemtest repository owner:branch")
stringParam('OPENJ9_SYSTEMTEST_OWNER_BRANCH', "eclipse:master", "Personal eclipse-openj9/openj9-systemtest repository owner:branch")
stringParam('STF_OWNER_BRANCH', "adoptium:master", "Personal stf repo owner:branch")
stringParam('JCK_GIT_REPO', ACTUAL_JCK_GIT_REPO, "For JCK test only")

stringParam('JCK_GIT_REPO', ACTUAL_JCK_GIT_REPO, "JCK git repo. For JCK test only")
stringParam('JCK_GIT_BRANCH', JCK_GIT_BRANCH, "JCK branch. For JCK test only")
parameterSeparatorDefinition {
name('NON_AQA_TEST_REPOS_PARAMS')
separatorStyle(separatorStyleCss)
Expand Down