-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Spell "build linux darwin" as "build !windows". #11434
Conversation
Equivalent for supported platforms, and makes it easier to support additional unix-like OSes. [NO TESTS NEEDED] Signed-off-by: Maya Rashish <[email protected]>
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 don't think this will work correctly. The files in https://github.com/containers/podman/tree/main/pkg/machine/qemu get the build tags via file name. Since there are no build files for the other OSes this will not compile.
Hi Luap99,
This patch is the easiest to digest one of all the changes I needed. |
Does |
yes, but only with the other patches included :) |
Hm. All the cross-builds passed, so I think we're good to merge this - it doesn't break anything we're testing/using. /approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: coypoop, mheon The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I think it is great to enable this for other OSes but without any testing this will break easily. We only test the compile for linux, windows, macos. |
I'd be OK with adding a note in the readme that Windows, OS X, and Linux are the only supported OSes, and while Podman may work elsewhere, it does not receive official testing on those architectures. |
s/architectures/architectures and operating systems |
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.
Is it intentional that you left pkg/machine/libvirt/machine.go
the same?
That might be dead code :-) I don't think anything else is importing it |
LGTM |
/lgtm |
Equivalent for supported platforms, and makes it easier to support
additional unix-like OSes.