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

Run regression testing in CI over openjdk20 #13402

Closed
nrmancuso opened this issue Jul 17, 2023 · 1 comment · Fixed by #13403
Closed

Run regression testing in CI over openjdk20 #13402

nrmancuso opened this issue Jul 17, 2023 · 1 comment · Fixed by #13403
Assignees
Milestone

Comments

@nrmancuso
Copy link
Member

nrmancuso commented Jul 17, 2023

Since we are getting ready to support JDK 20 syntax (see #13279), we should run regression testing over the openjdk20 code base, as we have done for all other recent JDK versions.

We can use the script below:

#!/bin/bash
OUTPUT="test"
while  [ -n "$OUTPUT" ]; do
    OUTPUT=$(.ci/no-exception-test.sh openjdk20-with-checks-nonjavadoc-error | grep "Caused by: " | grep -oh '/.*.java' | sed 's./.[\\\\\\/].g' | uniq)
    echo "$OUTPUT"
    echo -e "<module name=\"BeforeExecutionExclusionFileFilter\">\n  <property name=\"fileNamePattern\" value=\"$OUTPUT\$\"/>\n</module>" >> config/projects-to-test/openjdk20-excluded.files
    rm -rf .ci-temp/contribution
    git add .
    git commit -m "added another file filter"
done
@nrmancuso nrmancuso self-assigned this Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 17, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 18, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 18, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 20, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 20, 2023
nrmancuso added a commit to nrmancuso/checkstyle that referenced this issue Jul 21, 2023
@rnveach
Copy link
Member

rnveach commented Jul 21, 2023

Fix was merged

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants