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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

youngbash88
Copy link

@youngbash88 youngbash88 commented Mar 4, 2025

Summary of the PR

  • Added docker.ps1 to enable building the container using PowerShell with the following command:
    .\docker.ps1 build
    And publishing the container using:
    .\docker.ps1 publish

as in docker.sh to resolve #49 (Note: didn't update the manifest in docker.sh)

  • Modified .github/workflows/docker-publish.yml to: Add build-windows job for Windows containers.

Requirements

Before submitting your PR, please make sure you addressed the following
requirements:

  • All commits in this PR have Signed-Off-By trailers (with
    git commit -s), and the commit message has max 60 characters for the
    summary and max 75 characters for each description line.
  • All added/changed functionality has a corresponding unit/integration
    test.
  • All added/changed public-facing functionality has entries in the "Upcoming
    Release" section of CHANGELOG.md (if no such section exists, please create one).
  • Any newly added unsafe code is properly documented.

Copy link
Member

@stefano-garzarella stefano-garzarella left a 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?

@stefano-garzarella
Copy link
Member

@youngbash88 thanks for the PR, I just enabled the CI, but it's failing soon, can you take a look?

@roypat
Copy link
Member

roypat commented Mar 6, 2025

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.

@youngbash88
Copy link
Author

Hey, I'm not really familiar with the context behind #49, could you provide a bit more motivation for this?

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.

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.

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?

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from d5ce5e7 to 2c75eba Compare March 6, 2025 20:39
@youngbash88 youngbash88 requested a review from RuoqingHe as a code owner March 6, 2025 20:39
@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch 2 times, most recently from 5b1e858 to 8dae2cd Compare March 8, 2025 17:49
@stefano-garzarella
Copy link
Member

@youngbash88 there is something wrong with the rebase here, can you do it properly?

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from aba6bf7 to 83bf531 Compare March 11, 2025 08:43
@youngbash88
Copy link
Author

@stefano-garzarella done.

@stefano-garzarella
Copy link
Member

@youngbash88 there is still a commit with just "test"

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from 83bf531 to 651e5ed Compare March 20, 2025 11:38
@youngbash88
Copy link
Author

@stefano-garzarella I squashed the commits and updated the commit message. LMK if it's good or if any changes are needed

Copy link
Member

@stefano-garzarella stefano-garzarella left a 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!

@RuoqingHe
Copy link
Member

I think we can ask people in mshv to get involved on this topic, IMO they most likely need this

@stefano-garzarella
Copy link
Member

I think we can ask people in mshv to get involved on this topic, IMO they most likely need this

Good point, let me ping the code owners of that crate.

@russell-islam @liuw @NunoDasNeves @jinankjain @praveen-pk please, can you take a look?

@liuw
Copy link
Member

liuw commented Mar 22, 2025

I think we can ask people in mshv to get involved on this topic, IMO they most likely need this

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. :-)

@russell-islam
Copy link

I think we can ask people in mshv to get involved on this topic, IMO they most likely need this

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

@stefano-garzarella
Copy link
Member

@youngbash88 LGTM, but please organize the commits better:

  • avoid doing multiple stuff in a single commit (e.g. last commit can be splitted at least in 2 commits)
  • avoid changing code introduced by the PR in next commits (e.g. in this case, introduce the docker.env and changes related to linux first, then introduce the docker.ps1, so you can use that file directly
  • avoid merging commit from main, just rebase this PR on top of it

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from 6f320d6 to e7e8d5b Compare March 26, 2025 21:36
Copy link
Member

@stefano-garzarella stefano-garzarella left a 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?

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from e7e8d5b to a55adf8 Compare April 2, 2025 07:16
@youngbash88
Copy link
Author

@stefano-garzarella It supposed to work now. can you activate the CI?

@stefano-garzarella
Copy link
Member

@youngbash88 please check patch 3 description, try to keep lines around 75 columns.

It looks like CI is still failing.

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from a55adf8 to 2b819b3 Compare April 2, 2025 12:18
@youngbash88
Copy link
Author

@youngbash88 please check patch 3 description, try to keep lines around 75 columns.

@stefano-garzarella I updated this commit message, is that what you meant?
Also i changed the approach, now build_container.sh source rust toolchain from docker.env directly

Copy link
Member

@stefano-garzarella stefano-garzarella left a 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.

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from 2b819b3 to a51737b Compare April 2, 2025 17:09
@youngbash88
Copy link
Author

@stefano-garzarella can you please enable the CI?

@stefano-garzarella
Copy link
Member

stefano-garzarella commented Apr 2, 2025

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:

Add docker.env

We are going to add a windows script, so concentrate the environment
variables in one file to use them in the linux and windows script.

Patch 2:

Define RUST_TOOLCHAIN in docker.env

Instead of defining RUST_TOOLCHAIN in both Dockerfile and
Dockerfile.windows.x86_64files, let's define it in one place
(docker.env and pass it as an environment variable on both
docker.sh and github workflows.

etc.

@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch 2 times, most recently from 1bce945 to 2c9509a Compare April 2, 2025 22:55
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]>
@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from 2c9509a to c2dc88c Compare April 2, 2025 23:07
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]>
@youngbash88 youngbash88 force-pushed the add-windows-docker-build branch from c2dc88c to 5a0debd Compare April 2, 2025 23:14
@stefano-garzarella
Copy link
Member

@youngbash88 thanks, LGTM!

@youngbash88
Copy link
Author

@stefano-garzarella Thanks for your time!

@stefano-garzarella
Copy link
Member

@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.

Copy link
Member

@RuoqingHe RuoqingHe left a 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 🙂

@youngbash88
Copy link
Author

@RuoqingHe
Screenshot 2025-04-03 143654
Screenshot 2025-04-03 144141
Screenshot 2025-04-03 144101
Screenshot 2025-04-03 144757
Screenshot 2025-04-03 145315

Copy link
Member

@RuoqingHe RuoqingHe left a 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 ❤️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add script for building the Windows container
6 participants