Skip to content

Commit

Permalink
Set functional vendor repo branch match with official adoptium branch
Browse files Browse the repository at this point in the history
fixes: automation/issues/108
Signed-off-by: Lan Xia <[email protected]>
  • Loading branch information
llxia committed Nov 6, 2024
1 parent 4160f41 commit 5036eb0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion buildenv/jenkins/aqaTestPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,13 @@ def generateJobs(jobJdkVersion, jobTestFlag, jobPlatforms, jobTargets, jobParall
}
} else {
VENDOR_TEST_REPOS = '[email protected]:runtimes/test.git'
VENDOR_TEST_BRANCHES = params.ADOPTOPENJDK_BRANCH ?: 'master'
// Default VENDOR_TEST_BRANCHES is master.
// If offical adoptium repo is used, set VENDOR_TEST_BRANCHES to match with params.ADOPTOPENJDK_BRANCH.
VENDOR_TEST_BRANCHES = 'master'
if (params.ADOPTOPENJDK_REPO && params.ADOPTOPENJDK_REPO.contains("adoptium/aqa-tests")) {
VENDOR_TEST_BRANCHES = params.ADOPTOPENJDK_BRANCH ?: 'master'
}

VENDOR_TEST_DIRS = 'functional'
}
} else if (TARGET.contains('jck')) {
Expand Down

0 comments on commit 5036eb0

Please sign in to comment.