-
Notifications
You must be signed in to change notification settings - Fork 81
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
Apply review changes from the gtk3 build to the gtk4 builder #2803
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,7 @@ RUN apt-get update -qq && apt-get install -qq -y \ | |
libgtk-3-dev \ | ||
libgtk-4-dev \ | ||
freeglut3-dev \ | ||
webkit2gtk-driver \ | ||
default-jdk | ||
webkit2gtk-driver | ||
|
||
ENV HOME=/home/swtbuild | ||
ENV DISPLAY :0 | ||
|
@@ -32,6 +31,5 @@ RUN chgrp -R 0 ${HOME} && chmod -R g=u ${HOME} | |
|
||
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | ||
ENV LANG=en_US.UTF-8 | ||
ENV SWT_JAVA_HOME=/usr/lib/jvm/default-java/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the build scripts require this setting, and this is the "swtnativebuild" image so I think it is valid to have this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above (#2803 (comment)), that's already set by the corresponding Jenkinsfiles if necessary. |
||
|
||
USER 10001 | ||
USER 10001 |
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.
I would keep the default jdk as we need it for compilation (the headers at least) and installing it afterwards safe some space in the image, but then we need to download (and install) this saved thing afterwards. Also it would hinder others to use the docker image outside the jenkinsbuild,
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.
As explained in #2802 (comment), that's not necessary because that's what is already happening.
I don't think that's a relevant use-case for that docker-image. We have only considered the requirements of our use-case in releng/swt/equinox for these images in the past.