-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CI: Publish Docker image to Docker Hub #281
CI: Publish Docker image to Docker Hub #281
Conversation
How much time does it take to build a Docker image from scratch? I am concerned about the considerably longer build time in the CI pipeline, which could lead to potential problems. |
This is under testing now. I have no idea how long this will take for the CI on GitHub. Locally, it will be ~20 min IIRC. |
20 min is too long. Can we concentrate on x86-64 target instead? |
I think I would propose the following:
|
164c492
to
511847f
Compare
9bbbad7
to
812ed6f
Compare
ccd00b3
to
ef678bb
Compare
5bf7615
to
30430d0
Compare
Instead of a directory named "dockerhub," should we put the Docker related files in somewhere like |
d38e01b
to
ad7d690
Compare
Based on this comment, I think it's a security feature, that a pull request from another repo shouldn't be able to access the secret, which makes sense. I have tested the Docker Hub login and push feature on my branch, so the PR should work when merged! |
ad7d690
to
4155954
Compare
4155954
to
efbfec9
Compare
The proposed change is currently too lengthy to be accepted. We should consider building the Docker image only when files in the |
efbfec9
to
277748b
Compare
Sorry that the commit message is misleading. Please see the updated version. To sum up, the incremental build is taking around 6 minutes to generate a new rv32emu image and push it to Docker Hub. |
A filter should be implemented to monitor modified files. See https://github.com/sysprog21/rv32emu/blob/master/.github/workflows/benchmark.yml |
ec8fe34
to
6f713b8
Compare
The rule is set up to only produce a new
However, I think it might be better that all PR be merged to the master branch to produce a new image. In this case, any image that we pull from the Docker Hub will be the latest commit on the master branch. |
6f713b8
to
2d2e4c8
Compare
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.
Modify README.md
and mention the instructions to pull built images from Docker Hub.
The rv32emu image build process will take around 6 minutes on GitHub CI. The base image build process will take around 20 and 10 minutes when building a native image on the native arch for gcc and sail, respectively, if internet connection is fast. The multi-arch base image build will take a long time (4 hours on a 8-core machine with fast internet) as we will use QEMU emulation for cross compilation. At the time of writing, we can only run multi-arch build successfully on x86 machines. The base image will need to be built using the script provided in the docker directory, manually. The rv32emu image will be built automatically on PR and merge into the master branch.
2d2e4c8
to
d212f96
Compare
Thank @henrybear327 for contributing! |
…mage_on_merge CI: Publish Docker image to Docker Hub
Docker images will be built on merge requests.
As discussed, we will employ a multi-stage docker build to reduce build time and image size, but still, making keep the image reproducible when the environment needs to be changed.