-
Notifications
You must be signed in to change notification settings - Fork 34
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
Add windows docker build script #125
base: main
Are you sure you want to change the base?
Conversation
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.
Please, can you update README.md
too?
@youngbash88 thanks for the PR, I just enabled the CI, but it's failing soon, can you take a look? |
Hey, I'm not really familiar with the context behind #49, could you provide a bit more motivation for this? Will it help with testing some of the mshv stuff in GHA? Because our buildkite CI infra doesnt have any windows hosts, so a windows docker container can't run anywhere in CI that I'm aware of. |
Hey, thanks for the clarification! The motivation behind #49 was to add a script similar to docker.sh for Windows. I initially modified the CI to add build-windows, thinking it could be useful for future testing.
Since the Buildkite CI infra doesn’t have Windows hosts, the Windows build won’t work in the current setup. I’ll go ahead and remove the Windows build step from the CI configuration. Should I open an issue to track this for potential Windows host support in the future? |
d5ce5e7
to
2c75eba
Compare
5b1e858
to
8dae2cd
Compare
a14341f
to
aba6bf7
Compare
@youngbash88 there is something wrong with the rebase here, can you do it properly? |
aba6bf7
to
83bf531
Compare
@stefano-garzarella done. |
@youngbash88 there is still a commit with just "test" |
83bf531
to
651e5ed
Compare
@stefano-garzarella I squashed the commits and updated the commit message. LMK if it's good or if any changes are needed |
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 left minor comments, but I didn't test the windows script since I don't have access to windows machine. The changes to linux scripts LGTM!
I think we can ask people in |
Good point, let me ping the code owners of that crate. @russell-islam @liuw @NunoDasNeves @jinankjain @praveen-pk please, can you take a look? |
We use Linux for our infrastructure through and through. I myself have close to zero knowledge on PowerShell. :-) |
+1 |
@youngbash88 LGTM, but please organize the commits better:
|
6f320d6
to
e7e8d5b
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.
IIUC it looks like there is some issues with CI and RUST_TOOLCHAIN changes.
@youngbash88 can you take a look?
e7e8d5b
to
a55adf8
Compare
@stefano-garzarella It supposed to work now. can you activate the CI? |
@youngbash88 please check patch 3 description, try to keep lines around 75 columns. It looks like CI is still failing. |
a55adf8
to
2b819b3
Compare
@stefano-garzarella I updated this commit message, is that what you meant? |
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.
Please try to write better commit. I suggest taking a look at https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
For example Modify docker-publish.yml
is not a good title, better something like:
Add docker.env to workflow paths
build_container.sh sources RUST_TOOLCHAIN from it, so we need to ...
So summarize in the title what the patch is doing, then you can add details in the body of the commit message, which provides more context and also the reason (like you did).
That said, I think that commit can be removed if we implement what I suggested, like we do for other env vars.
2b819b3
to
a51737b
Compare
@stefano-garzarella can you please enable the CI? |
I don't want to be picky, but please check commit messages. Use imperative (not past verb), also explain reason, so in the future we can remember what we did (and why we did). Patch 1:
Patch 2:
etc. |
1bce945
to
2c9509a
Compare
We are going to add a windows script, so store the environment variables in one file to use them in the both linux and windows scripts. Signed-off-by: bashir <[email protected]>
Instead of defining RUST_TOOLCHAIN in both `Dockerfile.windows.x86_64` and `build_container.sh` , let's define it in `docker.env` as the single source and pass it as an environment variable to both docker.sh and Github workflows to simplify updates. Signed-off-by: bashir <[email protected]>
Set Chocolatey version to 1.4.0 in `Dockerfile.windows.x86_64` to avoid the .NET Framework 4.8 dependency required by the latest version. got this solution from here https://stackoverflow.com/a/76476925. Signed-off-by: bashir <[email protected]>
2c9509a
to
c2dc88c
Compare
Create `docker.ps1` to provide a Windows script for building and publishing docker images, matching the functionality of `docker.sh` on Linux. Signed-off-by: bashir <[email protected]>
Add instructions to `README.md` for building and running Windows Docker images using docker.ps1. This provides clear guidance for Windows users. Signed-off-by: bashir <[email protected]>
c2dc88c
to
5a0debd
Compare
@youngbash88 thanks, LGTM! |
@stefano-garzarella Thanks for your time! |
@RuoqingHe @roypat PTAL. I think for now we can just merge it also if our CI doesn't support it yet, allowing people to build our container on windows as well. |
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.
Great work - could @youngbash88 provide some screenshots showing this actually works for testing rust-vmm crates on windows, and some OS details as well, that would be very helpful 🙂
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.
Looks good to me, thanks @youngbash88 ❤️
Summary of the PR
docker.ps1
to enable building the container using PowerShell with the following command:as in
docker.sh
to resolve #49 (Note: didn't update the manifest indocker.sh
).github/workflows/docker-publish.yml
to: Addbuild-windows
job for Windows containers.Requirements
Before submitting your PR, please make sure you addressed the following
requirements:
git commit -s
), and the commit message has max 60 characters for thesummary and max 75 characters for each description line.
test.
Release" section of CHANGELOG.md (if no such section exists, please create one).
unsafe
code is properly documented.