Skip to content

Commit 326dee4

Browse files
Merge branch 'adoptium:master' into test
2 parents e7ff642 + 4f02fc5 commit 326dee4

File tree

7 files changed

+107
-115
lines changed

7 files changed

+107
-115
lines changed

.github/workflows/directoriesFilesChangePR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
jdksource: 'install-jdk'
5252
version: ${{ matrix.version }}
5353
openjdk_testRepo: '${{ github.event.pull_request.head.repo.full_name }}:${{ github.head_ref }}'
54-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
54+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5555
if: failure()
5656
with:
5757
name: output_changed_based_build_list

.github/workflows/parse-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
cat all.json | python scripts/disabled_tests/issue_status.py -v > output.json
4545
echo "::endgroup::"
4646
- name: store artifact
47-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4848
with:
4949
name: disabled_tests
5050
path: output.json

.github/workflows/runAqa.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Parse parameters
3636
env:
3737
args: ${{ github.event.comment.body }}
38-
run: python3 TKG/scripts/testBot/runAqaArgParse.py $args 2> log.txt
38+
run: python3 TKG/scripts/testBot/runAqaArgParse.py "$args" 2> log.txt
3939
id: argparse
4040
- name: Output log
4141
if: failure()
@@ -45,7 +45,7 @@ jobs:
4545
log="${log//'%'/'%25'}"
4646
log="${log//$'\n'/'%0A'}"
4747
log="${log//$'\r'/'%0D'}"
48-
log="${log/$'`'/'\`'}"
48+
log="${log//'`'/'\`'}"
4949
echo ::set-output name=log::$log
5050
id: output_log
5151
- name: Create error comment
@@ -54,13 +54,14 @@ jobs:
5454
with:
5555
github-token: ${{secrets.GITHUB_TOKEN}}
5656
script: |
57-
comment_body = `
58-
@${{ github.actor }}
59-
\`\`\`
60-
${{ steps.output_log.outputs.log }}
61-
\`\`\`
62-
No builds were started.
63-
`;
57+
const log_content = `${{ steps.output_log.outputs.log }}`;
58+
const comment_body = [
59+
`@${{ github.actor }}`,
60+
'```',
61+
log_content,
62+
'```',
63+
'No builds were started.'
64+
].join('\n');
6465
github.rest.issues.createComment({
6566
issue_number: context.issue.number,
6667
owner: context.repo.owner,
@@ -157,7 +158,7 @@ jobs:
157158
version: ${{ matrix.jdk_version }}
158159
openjdk_testRepo: '${{ fromJSON(steps.get-pr.outputs.result).head.repo.full_name }}:${{ fromJSON(steps.get-pr.outputs.result).head.ref }}'
159160
tkg_Repo: ${{ matrix.tkg_repo }}
160-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
161+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
161162
if: failure()
162163
with:
163164
name: test_output

openjdk/excludes/ProblemList_openjdk25.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jdk/incubator/concurrent/ScopedValue/StressStackOverflow.java https://bugs.openj
112112

113113
# jdk_net
114114

115-
java/net/CookieHandler/B6644726.java https://bugs.openjdk.org/browse/JDK-8365811 macosx-all
115+
java/net/CookieHandler/B6644726.java https://bugs.openjdk.org/browse/JDK-8365811 generic-all
116116
java/net/Inet4Address/PingThis.java https://github.com/adoptium/infrastructure/issues/1127 aix-all
117117
java/net/InetAddress/BadDottedIPAddress.java https://github.com/adoptium/aqa-tests/issues/593 linux-all
118118
java/net/InetAddress/CachedUnknownHostName.java https://github.com/adoptium/aqa-tests/issues/593 linux-all

openjdk/openjdk.mk

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,6 @@ JTREG_BASIC_OPTIONS += $(JTREG_KEY_OPTIONS)
143143
JTREG_BASIC_OPTIONS_WO_EXTRA_OPTS := $(JTREG_BASIC_OPTIONS)
144144
JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
145145

146-
# Add APPLICATION_OPTIONS to pass options directly to jtreg (not through vmoptions)
147-
ifdef APPLICATION_OPTIONS
148-
JTREG_BASIC_OPTIONS += $(APPLICATION_OPTIONS)
149-
endif
150-
151146
# add another new parameter for concurrency
152147
SPECIAL_CONCURRENCY=$(EXTRA_JTREG_OPTIONS)
153148
# set SPECIAL_CONCURRENCY to 1 if the jdk is openj9 and the platform is linux_aarch64.

0 commit comments

Comments
 (0)