Skip to content
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

Merged

Conversation

henrybear327
Copy link
Collaborator

@henrybear327 henrybear327 commented Nov 26, 2023

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.

@henrybear327 henrybear327 self-assigned this Nov 26, 2023
@henrybear327 henrybear327 requested a review from jserv November 26, 2023 09:55
@jserv
Copy link
Contributor

jserv commented Nov 26, 2023

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.

@henrybear327
Copy link
Collaborator Author

henrybear327 commented Nov 26, 2023

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.

@jserv
Copy link
Contributor

jserv commented Nov 26, 2023

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?

@henrybear327
Copy link
Collaborator Author

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:

  • make a separate DockerHub image, called rv32emu-base
  • unless we change the base environment, we will just pull the base image and build on top of it, which I believe will only be several seconds to complete!

@henrybear327 henrybear327 marked this pull request as draft November 26, 2023 10:27
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 2 times, most recently from 164c492 to 511847f Compare November 26, 2023 11:50
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 5 times, most recently from 9bbbad7 to 812ed6f Compare November 27, 2023 10:13
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 2 times, most recently from ccd00b3 to ef678bb Compare November 27, 2023 12:53
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 2 times, most recently from 5bf7615 to 30430d0 Compare November 27, 2023 18:53
@henrybear327 henrybear327 marked this pull request as ready for review November 27, 2023 19:01
@jserv
Copy link
Contributor

jserv commented Nov 28, 2023

Instead of a directory named "dockerhub," should we put the Docker related files in somewhere like docker directory?

@jserv jserv changed the title Push docker image to DockerHub on merge into master CI: Publish Docker image to DockerHub Nov 28, 2023
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 6 times, most recently from d38e01b to ad7d690 Compare November 29, 2023 12:14
@henrybear327
Copy link
Collaborator Author

The GitHub secrets aren't set properly. @jserv can you fix it so the CI can work properly :)

I do set the following:

  • DOCKERHUB_ACCESS_TOKEN
  • DOCKERHUB_USERNAME

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!

@henrybear327 henrybear327 requested a review from jserv November 29, 2023 12:16
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch from ad7d690 to 4155954 Compare November 29, 2023 12:17
@jserv jserv changed the title CI: Publish Docker image to DockerHub CI: Publish Docker image to Docker Hub Nov 29, 2023
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch from 4155954 to efbfec9 Compare November 29, 2023 15:00
@henrybear327 henrybear327 requested a review from jserv November 29, 2023 15:00
@jserv
Copy link
Contributor

jserv commented Nov 29, 2023

The 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 proposed change is currently too lengthy to be accepted. We should consider building the Docker image only when files in the src directory are modified. Additionally, to optimize the process, we should implement incremental generation. This means that we should update only the rv32emu executable instead of rebuilding the entire gcc and sail components.

@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch from efbfec9 to 277748b Compare November 29, 2023 15:23
@henrybear327
Copy link
Collaborator Author

The 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 proposed change is currently too lengthy to be accepted. We should consider building the Docker image only when files in the src directory are modified. Additionally, to optimize the process, we should implement incremental generation. This means that we should update only the rv32emu executable instead of rebuilding the entire gcc and sail components.

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.

@jserv
Copy link
Contributor

jserv commented Nov 29, 2023

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

@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch 2 times, most recently from ec8fe34 to 6f713b8 Compare November 29, 2023 19:04
@henrybear327
Copy link
Collaborator Author

henrybear327 commented Nov 29, 2023

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

The rule is set up to only produce a new rv32emu image when there are any changes in the following directories (as there are files that might impact code compilation, benchmarking, arch tests, etc.

  • src/**
  • build/**
  • mk/**
  • tests/**
  • tools/**

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.

@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch from 6f713b8 to 2d2e4c8 Compare November 29, 2023 19:07
Copy link
Contributor

@jserv jserv left a 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.
@henrybear327 henrybear327 force-pushed the feat/push_docker_image_on_merge branch from 2d2e4c8 to d212f96 Compare November 29, 2023 23:39
@henrybear327 henrybear327 requested a review from jserv November 29, 2023 23:40
@jserv jserv merged commit eec79f0 into sysprog21:master Nov 30, 2023
@jserv
Copy link
Contributor

jserv commented Nov 30, 2023

Thank @henrybear327 for contributing!

@henrybear327 henrybear327 deleted the feat/push_docker_image_on_merge branch November 30, 2023 08:23
vestata pushed a commit to vestata/rv32emu that referenced this pull request Jan 24, 2025
…mage_on_merge

CI: Publish Docker image to Docker Hub
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants