Skip to content

Commit f1e9bdc

Browse files
authored
Merge branch 'master' into issue6418
2 parents 065611b + 8984ffd commit f1e9bdc

File tree

12 files changed

+173
-70
lines changed

12 files changed

+173
-70
lines changed
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
name: Release Triage Tables
2+
about: An Issue to track AQAvit triage during release
3+
title: '<Month Year> Release Triage - <JDK-Version>'
4+
labels: 'release triage'
5+
assignees: ''
6+
7+
Release Pipeline link(s):
8+
<insert links here>
9+
10+
---
11+
12+
✔️ activity has successfully completed and no blocking issues found.
13+
⏳ actively triaging for this version/platform.
14+
⛔ no build planned or blocking issues for this version/platform combination.
15+
⏸️ activity not yet started.
16+
17+
<Keep only the version table that applies to what is being triaged>
18+
<JDK8 Table>
19+
20+
| Platform | Status | Results | Notes |
21+
| --- | --- | --- | --- |
22+
| **x86-64_mac** | ⏸️ | | |
23+
| **x86-64_linux** | ⏸️ | | |
24+
| **x86-64_windows** | ⏸️ | | |
25+
| **aarch64_linux** |⏸️ | | |
26+
| x86-64_alpine-linux | ⏸️ | | |
27+
| ppc64le_linux | ⏸️ | | |
28+
| ppc64_aix | ⏸️ | | |
29+
| sparcv9_solaris | ⏸️ | | |
30+
| x86-64_solaris | ⏸️ | | |
31+
| x86-32_windows |⏸️ | | |
32+
| arm_linux | ⏸️ | | separate pipeline |
33+
34+
35+
<JDK11 Table>
36+
37+
| Platform | Status | Results | Notes |
38+
| --- | --- | --- | --- |
39+
| **x86-64_mac** | ⏸️ | | |
40+
| **x86-64_linux** | ⏸️ | | |
41+
| **x86-64_windows** | ⏸️ | | |
42+
| **aarch64_linux** | ⏸️ | | |
43+
| **aarch64_mac** | ⏸️ | | |
44+
| x86-64_alpine-linux | ⏸️ | | |
45+
| ppc64le_linux | ⏸️ | | |
46+
| s390x_linux | ⏸️ | | |
47+
| ppc64_aix | ⏸️ | | |
48+
| arm_linux | ⏸️ | | |
49+
|x86-32_windows| ⏸️ | | |
50+
51+
52+
<JDK17 Table>
53+
54+
| Platform | Status | Results | Notes |
55+
| --- | --- | --- | --- |
56+
| **x86-64_mac** | ⏸️ | | |
57+
| **x86-64_linux** | ⏸️ | | |
58+
| **x86-64_windows** | ⏸️ | | |
59+
| **aarch64_linux** | ⏸️ | | |
60+
| **aarch64_mac** | ⏸️ | | |
61+
| x86-64_alpine-linux | ⏸️ | | |
62+
| ppc64le_linux | ⏸️ | | |
63+
| s390x_linux | ⏸️ | | |
64+
| ppc64_aix | ⏸️ | | |
65+
| arm_linux | ⏸️ | | |
66+
| riscv64_linux | ⏸️ | | |
67+
|x86-32_windows| ⏸️ | | |
68+
69+
70+
<JDK21 and Up Table>
71+
72+
| Platform | Status | Results | Notes |
73+
| --- | --- | --- | --- |
74+
| **x86-64_mac** | ⏸️ | | |
75+
| **x86-64_linux** | ⏸️ | | |
76+
| **x86-64_windows** | ⏸️ | | |
77+
| **aarch64_linux** | ⏸️ | | |
78+
| **aarch64_mac** | ⏸️ | | |
79+
| x86-64_alpine-linux | ⏸️ | | |
80+
| ppc64le_linux | ⏸️ | | |
81+
| s390x_linux | ⏸️ | | |
82+
| ppc64_aix | ⏸️ | | |
83+
| riscv64_linux | ⏸️ | | |
84+
| aarch64_windows| ⏸️ | | |
85+
| aarch64_alpine-linux| ⏸️ | | |
86+
87+
88+
<Results column entries are ment to link to triage comments for each platform>

buildenv/jenkins/perfPipeline_root.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ node("worker || (ci.role.test&&hw.arch.x86&&sw.os.linux)") {
5959
baseParams << string(name: "BENCHMARK", value: item.BENCHMARK)
6060
baseParams << string(name: "TARGET", value: item.TARGET)
6161
baseParams << string(name: "BUILD_LIST", value: item.BUILD_LIST)
62-
baseParams << string(name: "PERF_ITERATIONS", value: "${item.PERF_ITERATIONS}")
62+
baseParams << string(name: "PERF_ITERATIONS", value: item.PERF_ITERATIONS ? item.PERF_ITERATIONS.toString() : "4")
6363

6464
item.PLAT_MACHINE_MAP.each { kv ->
6565
kv.each {p, m ->

external/aot/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<property name="src" location="." />
1313

1414
<target name="prepare_base_image" depends="move_scripts,clean_image" description="prepare the base image">
15-
<echo message="Executing external.sh --prepare --dir ${TEST} --tag ${dockerImageTag} --version ${JDK_VERSION} --impl ${JDK_IMPL} --base_docker_registry_url 'docker.io' --base_docker_registry_dir 'default' --docker_args ${extra_docker_args} " />
15+
<echo message="Executing external.sh --prepare --dir ${TEST} --tag ${dockerImageTag} --version ${JDK_VERSION} --impl ${JDK_IMPL} --base_docker_registry_url 'icr.io' --base_docker_registry_dir 'default' --docker_args ${extra_docker_args} " />
1616
<exec executable="bash" failonerror="true">
1717
<arg value="${DEST_EXTERNAL}/external.sh"/>
1818
<arg value="--prepare"/>
@@ -25,7 +25,7 @@
2525
<arg value="--impl"/>
2626
<arg value="${JDK_IMPL}"/>
2727
<arg value="--base_docker_registry_url"/>
28-
<arg value="docker.io"/>
28+
<arg value="icr.io"/>
2929
<arg value="--base_docker_registry_dir"/>
3030
<arg value="default"/>
3131
<arg value="--docker_args"/>

external/criu-functional/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<property name="src" location="." />
1313

1414
<target name="prepare_base_image" depends="move_scripts,clean_image" description="prepare the base image">
15-
<echo message="Executing external.sh --prepare --dir ${TEST} --tag ${dockerImageTag} --version ${JDK_VERSION} --impl ${JDK_IMPL} --base_docker_registry_url 'docker.io' --base_docker_registry_dir 'default' --docker_args ${extra_docker_args} " />
15+
<echo message="Executing external.sh --prepare --dir ${TEST} --tag ${dockerImageTag} --version ${JDK_VERSION} --impl ${JDK_IMPL} --base_docker_registry_url 'icr.io' --base_docker_registry_dir 'default' --docker_args ${extra_docker_args} " />
1616
<exec executable="bash" failonerror="true">
1717
<arg value="${DEST_EXTERNAL}/external.sh"/>
1818
<arg value="--prepare"/>
@@ -25,7 +25,7 @@
2525
<arg value="--impl"/>
2626
<arg value="${JDK_IMPL}"/>
2727
<arg value="--base_docker_registry_url"/>
28-
<arg value="docker.io"/>
28+
<arg value="icr.io"/>
2929
<arg value="--base_docker_registry_dir"/>
3030
<arg value="default"/>
3131
<arg value="--docker_args"/>

openjdk/excludes/ProblemList_openjdk11-openj9.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ sun/security/mscapi/SmallPrimeExponentP.java https://github.ibm.com/runtimes/bac
297297
sun/security/mscapi/VeryLongAlias.java https://github.ibm.com/runtimes/backlog/issues/795 windows-all
298298
sun/security/pkcs11/Provider/MultipleLogins.sh https://github.ibm.com/runtimes/backlog/issues/795 linux-all
299299
sun/security/pkcs11/Secmod/AddTrustedCert.java https://github.ibm.com/runtimes/backlog/issues/795 linux-all
300+
sun/security/pkcs12/KeytoolOpensslInteropTest.java https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
300301
sun/security/pkcs12/KeytoolOpensslInteropTest.java#GenerateOpensslPKCS12 https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
302+
sun/security/pkcs12/KeytoolOpensslInteropTest.java#UseExistingPKCS12 https://github.com/eclipse-openj9/openj9/issues/22262 z/OS-s390x
301303
sun/security/provider/SecureRandom/AbstractDrbg/SpecTest.java https://github.ibm.com/runtimes/backlog/issues/809 linux-aarch64
302304
sun/security/provider/SecureRandom/SHA1PRNGReseed.java https://github.ibm.com/runtimes/backlog/issues/809 linux-aarch64
303305
sun/security/provider/SecureRandom/StrongSecureRandom.java https://github.ibm.com/runtimes/backlog/issues/809 linux-aarch64

openjdk/excludes/ProblemList_openjdk11.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ sun/management/jmxremote/bootstrap/CustomLauncherTest.java https://github.com/ad
6969
javax/net/ssl/SSLEngine/LargePacket.java https://bugs.openjdk.org/browse/JDK-8227651 generic-all
7070
javax/net/ssl/ServerName/SSLEngineExplorerWithCli.java https://github.com/adoptium/aqa-tests/issues/2123 linux-all,macosx-all
7171
sun/security/ssl/SSLSocketImpl/SSLSocketLeak.java https://github.com/adoptium/aqa-tests/issues/3811 windows-x86
72+
sun/security/ssl/X509TrustManagerImpl/distrust/Symantec.java https://github.com/adoptium/aqa-tests/issues/5955 generic-all
7273

7374
############################################################################
7475

openjdk/excludes/ProblemList_openjdk17-openj9.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ sun/security/mscapi/SmallPrimeExponentP.java https://github.ibm.com/runtimes/bac
337337
sun/security/mscapi/VeryLongAlias.java https://github.ibm.com/runtimes/backlog/issues/795 windows-all
338338
sun/security/pkcs11/Provider/MultipleLogins.sh https://github.ibm.com/runtimes/backlog/issues/795 linux-all
339339
sun/security/pkcs11/Secmod/AddTrustedCert.java https://github.ibm.com/runtimes/backlog/issues/795 linux-all
340+
sun/security/pkcs12/KeytoolOpensslInteropTest.java https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
340341
sun/security/pkcs12/KeytoolOpensslInteropTest.java#GenerateOpensslPKCS12 https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
342+
sun/security/pkcs12/KeytoolOpensslInteropTest.java#UseExistingPKCS12 https://github.com/eclipse-openj9/openj9/issues/22262 z/OS-s390x
341343
sun/security/provider/SecureRandom/AbstractDrbg/SpecTest.java https://github.ibm.com/runtimes/backlog/issues/809 linux-aarch64
342344
sun/security/provider/SecureRandom/StrongSecureRandom.java https://github.ibm.com/runtimes/backlog/issues/809 linux-aarch64
343345
sun/security/rsa/PrivateKeyEqualityTest.java https://github.ibm.com/runtimes/backlog/issues/795 macosx-all

openjdk/excludes/ProblemList_openjdk21-openj9.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,9 @@ sun/security/mscapi/SmallPrimeExponentP.java https://github.ibm.com/runtimes/bac
402402
sun/security/mscapi/VeryLongAlias.java https://github.ibm.com/runtimes/backlog/issues/795 windows-all
403403
sun/security/pkcs11/Provider/MultipleLogins.sh https://github.ibm.com/runtimes/backlog/issues/795 linux-all
404404
sun/security/pkcs11/Secmod/AddTrustedCert.java https://github.ibm.com/runtimes/backlog/issues/795 linux-all
405+
sun/security/pkcs12/KeytoolOpensslInteropTest.java https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
405406
sun/security/pkcs12/KeytoolOpensslInteropTest.java#GenerateOpensslPKCS12 https://github.com/eclipse-openj9/openj9/issues/21964 generic-all
407+
sun/security/pkcs12/KeytoolOpensslInteropTest.java#UseExistingPKCS12 https://github.com/eclipse-openj9/openj9/issues/22262 z/OS-s390x
406408
sun/security/rsa/PrivateKeyEqualityTest.java https://github.ibm.com/runtimes/backlog/issues/795 macosx-all
407409
sun/security/rsa/pss/SignatureTest2.java https://github.ibm.com/runtimes/backlog/issues/795 macosx-all
408410
sun/security/rsa/pss/SignatureTestPSS.java https://github.ibm.com/runtimes/backlog/issues/795 macosx-all

0 commit comments

Comments
 (0)