-
Notifications
You must be signed in to change notification settings - Fork 89
Re-add epiphany demo #369
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
Re-add epiphany demo #369
Conversation
|
looks like arm failed with a timeout trying to get the oqs certificate, force pushed to do a rebuild |
|
looks like the arm build has hung in the middle of building openssl, so seems there are issues with the github arm runners at the moment |
|
Thanks for this work, David! |
This has some caveats to be aware of 1. No idea if it would work on apple or windows OS as they are not linux and would also need an X Server 2. Image is fixed to Ubuntu 22.04. Can't update the base image it won't work. 3. Tested on a Ubuntu 24.04 VM and Raspian Bookworm 64bit on a raspberry pi. In general running GUIs from containers is complex requiring various other components such as dbus to be running. In the case here it manages to work with an environment variable hack, but moving to 24.04 introduced a new issue with dbus. KDE apps may also have issues. Even X Can have issues like the shared memory extension. There are interesting tools such as X11Docker which try to provide easier solutions but on the whole trying to run gui applications from a container can be fragile. Signed-off-by: Dave Kelsey <[email protected]>
|
the github actions issue with arm appears to be resolved and the arm build has now worked |
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.
LGTM
|
Merging as all outstanding comments have been resolved. Thanks @davidkel! |
This has some caveats to be aware of
In general running GUIs from containers is complex requiring various other components such as dbus to be running. In the case here it manages to work with an environment variable hack, but moving to 24.04 introduced a new issue with dbus. KDE apps may also have issues. Even X Can have issues like the shared memory extension. There are interesting tools such as X11Docker which try to provide easier solutions but on the whole trying to run gui applications from a container can be fragile.