-
Notifications
You must be signed in to change notification settings - Fork 6
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
CI fix #125
Conversation
I see you are trying to fix CI builds as well :) I think I found the root cause: moby/buildkit#4831 But even using the latest buildkit, it fails (so I guess it's not completely fixed upstream). It probably has to do with Docker version 26 vs Docker 25. For some reason, it has problems adding files to the container when multiple hardlinks exist from that file. I fixed it with the following workaround in Makefile (this breaks the hardlink by copying the file and then moving it back, essentially making it a "real" file instead of having it point to another inode:
I've created a PR with this workaround here: #126 |
Closing in favor of #126 |
This is WIP