-
-
Notifications
You must be signed in to change notification settings - Fork 314
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
WIP Add X11 setup and DISPLAY settings #242
Conversation
This PR is blocked by adoptium/infrastructure#184 |
@smlambert Also merge conflicts. |
I will resolve the merge conflicts, but this is a WIP that can not be merged until the infra issue is addressed. |
@@ -74,7 +74,9 @@ pipeline { | |||
withEnv(["JAVA_HOME=$WORKSPACE/openjdkbinary/j2sdk-image/${(params.JAVA_VERSION == 'SE80') ? 'jre/' : ''}", | |||
"JAVA_BIN=$WORKSPACE/openjdkbinary/j2sdk-image/${(params.JAVA_VERSION == 'SE80') ? 'jre/' : ''}bin", | |||
"JAVA_VERSION=${params.JAVA_VERSION}"]) { | |||
sh "$OPENJDK_TEST/maketest.sh $OPENJDK_TEST ${params.TARGET}" | |||
wrap([$class: 'Xvfb']) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we are using DISPLAY=:1
, we need to tell Xvfb to set display name to :1
.
This would be like wrap([$class: 'Xvfb', displayName: 1]) {
@ShelleyLambert Was something else merged in instead? |
I guess I deleted an old branch and did not look to see this was still pending (and that the infra issue it was depending on has now been closed). I will revive it, in a new branch/PR and see if we are able to run the jdk_awt and jdk_swing tests. |
Requires updates to Jenkinsfiles (for xvfb plugin), to playlists (for DISPLAY settings), and to exclude files to reinclude tests that are excluded due to issue number #49