Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adoptium/aqa-tests
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 70176053c4f53c67516bd91052a7928c858891a1
Choose a base ref
..
head repository: adoptium/aqa-tests
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 74840dbb6eaa73467117a48e7f15f3f5dc19a036
Choose a head ref
Showing with 4 additions and 2 deletions.
  1. +4 −2 buildenv/jenkins/JenkinsfileBase
6 changes: 4 additions & 2 deletions buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
@@ -632,11 +632,13 @@ def buildTest() {
timeout(time: 30, unit: 'MINUTES') {
copyArtifacts fingerprintArtifacts: true, projectName: "test.getDependency", excludes: "json-simple.jar, jtreg*.*", selector: lastSuccessful(), target: 'aqa-tests/TKG/lib'
}
} else if (env.BUILD_LIST.contains('openjdk')) {
}
if (env.BUILD_LIST.contains('openjdk')) {
timeout(time: 30, unit: 'MINUTES') {
copyArtifacts fingerprintArtifacts: true, projectName: "test.getDependency", filter: "jtreg*.*,openj9jtregtimeouthandler.*", selector: lastSuccessful(), target: 'aqa-tests/TKG/lib'
}
} else if (env.BUILD_LIST.contains('system')) {
}
if (env.BUILD_LIST.contains('system')) {
//get pre-staged test jars from systemtest.getDependency build before system test compilation
timeout(time: 30, unit: 'MINUTES') {
copyArtifacts fingerprintArtifacts: true, projectName: "systemtest.getDependency", selector: lastSuccessful(), target: 'aqa-tests'