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

Added system test pre-stage jars #533

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

annaibm
Copy link
Contributor

@annaibm annaibm commented Apr 18, 2024

  • Enables to avoid system test prerequisite zip file being empty.

related: adoptium/aqa-tests#4912

mauve => {
url => 'https://ci.adoptium.net/job/systemtest.getDependency/lastSuccessfulBuild/artifact/systemtest_prereqs/mauve/mauve.jar',
fname => 'mauve.jar',
sha1 => '8ed5b172be6a8885b72d0015f44e2a0b6c172d47'
Copy link
Contributor

@llxia llxia Apr 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

systemtest.getDependency builds mauve. The sha1 will be different in every build. We will need to ignore the sha1. The same as tools.

we do not need to ignore checksum for all systemtests jars

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has not been addressed.

We should not ignore checksum for all systemtests jars. It means line 329 my $ignoreChecksum = ($url =~ /systemtest.getDependency/); is wrong. Using mauve as an example, it should not have sha1. And we should update the logic to if sha1 or shaurl does not exist, ignore checksum.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@llxia I have updated the line to address the logic to if sha1 or shaurl does not exist, ignore checksum as below.
my $ignoreChecksum = (!defined $sha1 || $sha1 eq '') && (!defined $shaurl || $shaurl eq ''); .

@smlambert smlambert changed the title Added system test prestage jars Added system test pre-stage jars Apr 18, 2024
@annaibm annaibm force-pushed the prestageSystemJar branch 6 times, most recently from 30ac418 to dc21e7b Compare April 25, 2024 19:31
@annaibm annaibm force-pushed the prestageSystemJar branch 4 times, most recently from 054cf64 to 7681dcc Compare May 2, 2024 16:10
@annaibm annaibm force-pushed the prestageSystemJar branch 4 times, most recently from e9dab5b to f046b76 Compare May 24, 2024 20:32
- Enables to avoid system test prerequisite zip file being empty.

related: adoptium/aqa-tests#4912

Signed-off-by: Anna Babu Palathingal <anna.bp@ibm.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants