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_lib for system prestage jars #5239

Merged
merged 1 commit into from
May 29, 2024

Conversation

annaibm
Copy link
Contributor

@annaibm annaibm commented Apr 18, 2024

  • Prestage system test prequisities to system_lib

related: #4912

@llxia
Copy link
Contributor

llxia commented Apr 18, 2024

pre-stage jars are not used. asm.jar still got downloaded to /home/jenkins/workspace/Grinder/aqa-tests/systemtest_prereqs/asm/:

00:08:53.766  configure-asm:
00:08:53.766       [echo] Executing macro download-file
00:08:53.766       [echo] File to download: https://repository.ow2.org/nexus/content/repositories/releases/org/ow2/asm/asm/9.0/asm-9.0.jar
00:08:53.766       [echo] Destination: /home/jenkins/workspace/Grinder/aqa-tests/systemtest_prereqs/asm/asm.jar
00:08:53.766       [echo] Download tool: curl
00:08:53.766      [mkdir] Created dir: /home/jenkins/workspace/Grinder/aqa-tests/systemtest_prereqs/asm
00:08:53.766       [exec]   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
00:08:53.766       [exec]                                  Dload  Upload   Total   Spent    Left  Speed
00:08:53.766       [exec] 
00:08:54.639       [exec]   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100  118k  100  118k    0     0   114k      0  0:00:01  0:00:01 --:--:--  114k
00:08:54.639  

I suspect that we need to update the reference in system test repo.

@llxia
Copy link
Contributor

llxia commented Apr 18, 2024

Try change this line

-systemtest-prereqs=$(Q)$(SYSTEMTEST_RESROOT)$(D)systemtest_prereqs$(Q) \

@annaibm annaibm force-pushed the test_systemtest branch 3 times, most recently from ed08e77 to 961dd88 Compare April 24, 2024 16:56
@annaibm annaibm changed the title Added system_prereq_lib for system prestage jars Added system_lib for system prestage jars Apr 24, 2024
@annaibm annaibm force-pushed the test_systemtest branch 7 times, most recently from 86bdafd to 8d35f5b Compare May 1, 2024 14:24
@annaibm annaibm force-pushed the test_systemtest branch 2 times, most recently from cdb93d2 to 6876b4f Compare May 9, 2024 14:36
system/system.mk Outdated
@@ -71,15 +71,21 @@ ifdef JVM_OPTIONS
APPLICATION_OPTIONS := $(APPLICATION_OPTIONS) -jvmArgs $(Q)$(JVM_OPTIONS)$(Q)
endif

ifndef SYSTEM_LIB_DIR
SYSTEM_LIB_DIR := "/home/jenkins/workspace/Grinder/aqa-tests/systemtest_prereqs"
Copy link
Contributor

Choose a reason for hiding this comment

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

Try to set SYSTEM_LIB_DIR :=$(SYSTEMTEST_RESROOT)/systemtest_prereqs

@@ -337,7 +343,7 @@
</then>
</if>
<copy todir="${SYSTEMTEST_DEST}/systemtest_prereqs/">
<fileset dir="${TEST_ROOT}/systemtest_prereqs/" includes="**" />
<fileset dir="${system_lib_dir}" includes="**"/>
Copy link
Contributor

Choose a reason for hiding this comment

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

Why do we still need to copy to systemtest_prereqs dir?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, we don't need to copy to the systemtest_prereqs directory. I had kept it to check if local tests might need it; apparently, it's not needed. I will remove it.

sh "perl ./aqa-tests/TKG/scripts/getDependencies.pl -path ${env.LIB_DIR} -task default -customUrl ${customUrl}"
} else {
sh "perl ./aqa-tests/TKG/scripts/getDependencies.pl -path ${env.LIB_DIR} -task default"
}
Copy link
Contributor

Choose a reason for hiding this comment

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

for system tests, we do not need customUrl?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Passing the customUrl for system tests was duplicating the process of downloading the jar files.

Copy link
Contributor

Choose a reason for hiding this comment

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

why having customUrl will duplicate the process? When running at openj9 Jenkins, we should try to use systemtest.getDependency from openj9 Jenkins, not Adoptium.

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 used customUrl and replaced test.getDependency to systemtest.getDependency for system test libs in TKG.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

def defaultUrl = "https://ci.adoptium.net/job/test.getDependency/lastSuccessfulBuild/artifact/"
def systemUrl = "https://ci.adoptium.net/job/systemtest.getDependency/lastSuccessfulBuild/artifact/"
env.LIB_DIR = (env.BUILD_LIST == 'system') ? env.SYSTEM_LIB_DIR : env.LIB_DIR
def customUrl = (env.BUILD_LIST == 'system') ? systemUrl : defaultUrl
Copy link
Contributor

Choose a reason for hiding this comment

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

I would prefer to have if statement to make the logic clear:

if (env.BUILD_LIST == 'system') {
   env.LIB_DIR = env.SYSTEM_LIB_DIR
   customUrl = "https://ci.adoptium.net/job/systemtest.getDependency/lastSuccessfulBuild/artifact/"
} else {
   customUrl = "https://ci.adoptium.net/job/test.getDependency/lastSuccessfulBuild/artifact/"
}

Please note this change will conflict with #5289. Depends on which PR gets merged first, the other one will need to be updated.

@annaibm annaibm force-pushed the test_systemtest branch 6 times, most recently from 2149e1d to fb539fd Compare May 17, 2024 20:34
@annaibm annaibm force-pushed the test_systemtest branch 3 times, most recently from 327b8e2 to 7722d60 Compare May 21, 2024 19:12
@annaibm
Copy link
Contributor Author

annaibm commented May 22, 2024

The current PR does not have The systemtest-prereqs directory could not be found. error locally?

No, it is getting processed as below

TESTING:
STF 08:58:26.042 - =========================   S T F   =========================
systemtest-prereqs has been processed, and set to: /home/jenkins/workspace/Grinder/jvmtest/system/systemtest_prereqsRetrieving amount of free space on drive containing /home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/output_17163935052911/MiniMix_5m_0
There is 203270 Mb free

@annaibm annaibm force-pushed the test_systemtest branch 3 times, most recently from b7cabfa to a6dbf7c Compare May 24, 2024 20:27
@annaibm annaibm requested a review from llxia May 24, 2024 20:43
@annaibm
Copy link
Contributor Author

annaibm commented May 24, 2024

@llxia llxia requested a review from LongyuZhang May 27, 2024 15:46
@llxia
Copy link
Contributor

llxia commented May 27, 2024

try {
if (env.BUILD_LIST.contains('system')) {
//get pre-staged test jars from systemtest.getDependency build before system test compilation
timeout(time: 60, unit: 'MINUTES') {
copyArtifacts fingerprintArtifacts: true, projectName: "systemtest.getDependency", selector: lastSuccessful(), target: 'aqa-tests'
}
}
} catch (Exception e) {
echo 'Exception: ' + e.toString()
echo 'Cannot run copyArtifacts from test.getDependency/systemtest.getDependency. Skipping copyArtifacts...'
}
should be removed.

@annaibm annaibm force-pushed the test_systemtest branch 2 times, most recently from 44d500c to 6ed29ac Compare May 27, 2024 17:33
buildenv/jenkins/JenkinsfileBase Show resolved Hide resolved
system/common.xml Outdated Show resolved Hide resolved
@annaibm annaibm force-pushed the test_systemtest branch 3 times, most recently from 407420e to 719afe5 Compare May 28, 2024 13:41
- Prestage system test prequisities to system_lib

related: adoptium#4912

Signed-off-by: Anna Babu Palathingal <anna.bp@ibm.com>
@annaibm
Copy link
Contributor Author

annaibm commented May 28, 2024

Grinder links:
Sytem test
https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/40892/
https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/40894/ (windows)
non -system test:
https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/40893/
Local test passed:

LT  08:34:18.459 - Test stopped due to reaching runtime limit
LT  08:34:18.459 - Load test completed
LT  08:34:18.461 -   Ran     : 57047
LT  08:34:18.461 -   Passed  : 57047
LT  08:34:18.461 -   Failed  : 0
LT  08:34:18.461 -   Result  : PASSED
STF 08:34:19.009 - Monitoring Report Summary:
STF 08:34:19.009 -   o Process LT  ended with the expected exit code (0)
STF 08:34:19.009 - EXECUTE stage completed
STF 08:34:19.509 - 
STF 08:34:19.509 - ====================   T E A R D O W N   ====================
STF 08:34:19.509 - Running teardown: perl /home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/output_17169097929139/MiniMix_5m_1/20240528-082852-MixedLoadTest/tearDown.pl
STF 08:34:19.601 - TEARDOWN stage completed
STF 08:34:19.609 - 
STF 08:34:19.609 - =====================   R E S U L T S   =====================
STF 08:34:19.609 - Stage results:
STF 08:34:19.609 -   setUp:     pass
STF 08:34:19.609 -   execute:   pass
STF 08:34:19.609 -   teardown:  pass
STF 08:34:19.609 - 
STF 08:34:19.609 - Overall result: PASSED
-----------------------------------
MiniMix_5m_1_PASSED
-----------------------------------

TEST TEARDOWN:

Attempting to destroy all caches in cacheDir /home/jenkins/.cache/javasharedresources/

JVMSHRC806I Compressed references persistent shared cache "sharedcc_jenkins" has been destroyed. Use option -Xnocompressedrefs if you want to destroy a non-compressed references cache.
JVMSHRC807I Non-compressed references persistent shared cache "sharedcc_jenkins" has been destroyed. Use option -Xcompressedrefs if you want to destroy a compressed references cache.
JVMSHRC005I No shared class caches available
cache cleanup done
MiniMix_5m_1 Finish Time: Tue May 28 08:34:19 2024 Epoch Time (ms): 1716910459719

===============================================
Running test MiniMix_5m_2 ...
===============================================
MiniMix_5m_2 Start Time: Tue May 28 08:34:19 2024 Epoch Time (ms): 1716910459781
Skipped due to jvm options ( ) => MiniMix_5m_2_SKIPPED
MiniMix_5m_2 Finish Time: Tue May 28 08:34:19 2024 Epoch Time (ms): 1716910459809
make[4]: Leaving directory '/home/jenkins/workspace/Grinder/aqa-tests/system/otherLoadTest'
make[3]: Leaving directory '/home/jenkins/workspace/Grinder/aqa-tests/system'
make[2]: Leaving directory '/home/jenkins/workspace/Grinder/aqa-tests'


All tests finished, run result summary:
cd "/home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/scripts"; \
perl "resultsSum.pl" --failuremk="/home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/failedtargets.mk" --resultFile="/home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/output_17169097929139/TestTargetResult" --platFile="/home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/resources/buildPlatformMap.properties" --diagnostic=failure --jdkVersion=17 --jdkImpl=openj9 --jdkVendor="eclipse" --spec=linux_x86-64 --buildList=system --customTarget="" --testTarget=MiniMix_5m --tapPath=/home/jenkins/workspace/Grinder/aqa-tests/TKG/../TKG/output_17169097929139/ --tapName= --comment=""


TEST TARGETS SUMMARY
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PASSED test targets:
	MiniMix_5m_0
	MiniMix_5m_1

TOTAL: 3   EXECUTED: 2   PASSED: 2   FAILED: 0   DISABLED: 0   SKIPPED: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

ALL TESTS PASSED

_MiniMix_5m done

@annaibm annaibm requested a review from LongyuZhang May 28, 2024 15:36
@llxia
Copy link
Contributor

llxia commented May 29, 2024

This PR has to be merged with adoptium/TKG#533 and adoptium/STF#135

Copy link
Contributor

@llxia llxia left a comment

Choose a reason for hiding this comment

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

LGTM

@annaibm annaibm marked this pull request as ready for review May 29, 2024 19:10
Copy link
Contributor

@LongyuZhang LongyuZhang left a comment

Choose a reason for hiding this comment

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

LGTM

@LongyuZhang LongyuZhang merged commit a4ef8f2 into adoptium:master May 29, 2024
2 checks passed
llxia added a commit that referenced this pull request May 31, 2024
JasonFengJ9 pushed a commit that referenced this pull request May 31, 2024
annaibm added a commit to annaibm/aqa-tests that referenced this pull request Jun 18, 2024
annaibm added a commit to annaibm/aqa-tests that referenced this pull request Jun 18, 2024
)" (adoptium#5361)"

Changes for 1443, to check if vendor test repo is SVTrepo and make changes  accordingly.
This reverts commit 071c84b.
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

3 participants