-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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 support for building aarch64 ISO #13762
Conversation
deploy/iso/minikube-iso/arch/aarch64/package/cri-dockerd-aarch64/cri-dockerd.mk
Show resolved
Hide resolved
deep breath here we go /ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.0s 50.5s 50.6s 49.7s 51.3s Times for minikube ingress: 26.0s 30.1s 30.0s 29.0s 28.6s docker driver with docker runtime
Times for minikube start: 26.0s 24.7s 23.9s 24.5s 23.7s Times for minikube ingress: 24.4s 22.9s 23.9s 22.4s 21.9s docker driver with containerd runtime
Times for minikube start: 32.9s 40.3s 43.9s 39.8s 39.7s Times for minikube ingress: 19.0s 22.4s 17.9s 22.4s 22.4s |
omg ! Am I dreaming ? KVM and Hyperkit Tests are Green on this ISO PR ! this is one of the biggest works delivered in minikube in years ! Thank you for taking this to the finish line |
ok-to-build-iso |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
kvm2 driver with docker runtime
Times for minikube start: 53.8s 51.4s 51.7s 51.2s 51.3s Times for minikube ingress: 25.1s 29.6s 30.1s 29.1s 26.1s docker driver with docker runtime
Times for minikube start: 27.9s 24.6s 23.7s 24.6s 24.2s Times for minikube ingress: 22.9s 24.4s 20.9s 21.9s 22.9s docker driver with containerd runtime
Times for minikube (PR 13762) start: 39.9s 40.0s 29.3s 39.8s 43.5s Times for minikube ingress: 22.4s 22.4s 32.5s 18.4s 18.4s |
Hi @sharifelgamal, building a new ISO failed. |
ok-to-build-iso |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
Hi @sharifelgamal, we have updated your PR with the reference to newly built ISO. Pull the changes locally if you want to test with them or update your PR further. |
kvm2 driver with docker runtime
Times for minikube start: 53.5s 50.7s 51.2s 49.7s 51.3s Times for minikube ingress: 30.5s 29.1s 30.0s 29.6s 28.1s docker driver with docker runtime
Times for minikube ingress: 23.9s 22.4s 22.4s 22.9s 22.4s Times for minikube start: 28.8s 24.6s 24.5s 24.0s 24.1s docker driver with containerd runtime
Times for minikube start: 32.5s 43.9s 40.4s 39.8s 39.4s Times for minikube ingress: 17.9s 17.9s 22.4s 22.4s 22.5s |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
I am not a big fan of duplicating the package directories, but I would also be happy to refactor this after it has been delivered... There should only be one package directory (for each "external" project), and there is no need to add a template to Config.in Each package already has a dependency on the arch, where needed.
|
yeah, this was my understanding as well, but i was having issues with arch's building the wrong packages, so i built this system to make sure it didn't happen while testing |
sounds reasonable, it can be changed later without affecting the pacakges... i.e. the end make is the same, either way. the main annoyance was when having to translate from the OS arch to the Go arch, but that's more tedious than "hard" |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, sharifelgamal 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 |
This rather large PR adds the ability to build an arm64 buildroot ISO.
Specific changes include:
deploy/iso/minikube-iso
subdirectoriesarch
directory for all arch specific packagesConfig.in
so each arch can define it at build timeboard/coreos/minikube
toboard/minikube/<arch>
Closes #9228
Thanks for your patience everyone.