-
-
Notifications
You must be signed in to change notification settings - Fork 317
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
refine copyArtifacts logic #4863
Conversation
9fc68ad
to
ced6cea
Compare
buildenv/jenkins/JenkinsfileBase
Outdated
if (env.BUILD_LIST.startsWith('system')) { | ||
if (env.BUILD_LIST.contains('functional')) { | ||
timeout(time: 60, unit: 'MINUTES') { | ||
copyArtifacts fingerprintArtifacts: true, projectName: "test.getDependency", excludes: "json-simple.jar, jtreg*.*", selector: lastSuccessful(), target: 'aqa-tests/TKG/lib' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we can exclude jtreg from functional here, because its picked up in compile step, via the build.xml for the ssl-tests and CryptoTest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, if the jtreg is not pre-downloaded, it will be downloaded via build.xml during the compilation stage. On second thought, since we are running functional test builds nightly, I think we should include jtreg (in dev and extended level only).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR is updated. Grinder - extended.functional
- donwload the 3rd party jars based on BUILD_LIST Signed-off-by: Lan Xia <[email protected]>
- donwload the 3rd party jars based on BUILD_LIST Signed-off-by: Lan Xia <[email protected]>
- donwload the 3rd party jars based on BUILD_LIST Signed-off-by: Lan Xia <[email protected]>
- donwload the 3rd party jars based on BUILD_LIST Signed-off-by: Lan Xia <[email protected]>
This PR will help us to reduce downloads during build execution time. Eventually, we would like to pre-stage the 3rd party jar.
related: #4500