-
Notifications
You must be signed in to change notification settings - Fork 245
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
Fails on GitHub Actions with ubuntu-24.04 (Cannot utime: Function not implemented) #1957
Comments
PR #467 broke the build due to this bug: pypa/cibuildwheel#1957 . This time I’ll test the workflow *before* merging.
I couldn't reproduce this error: https://github.com/mayeut/cibuildwheel/actions/runs/10407833822/job/28823988398 |
I’ve just tried again, and yeah, seems fixed. Perhaps @bemoody can try again too, and maybe close the issue? |
I re-ran the workflow that failed and it worked this time. Thanks for looking into it! |
Using the GitHub action
pypa/[email protected]
appears to work if the workflow uses the GitHububuntu-22.04
runner (currentlyubuntu-latest
.)It appears to fail when using the
ubuntu-24.04
runner (currently in "beta".)It appears that the reason for this is that, after having completed the x86_64 build, and while trying to copy the project into the
manylinux2014_i686
container, thetar
command fails (I guess that this is atar
command running inside the container.)Specifically,
tar
gives the error messageCannot utime: Function not implemented
.Here's an excerpt from the GitHub action log:
I don't know why this fails (a bug in Github's configuration? a bug in docker?) - but perhaps this could be worked-around by using
tar --touch
?Working example
Broken example
The text was updated successfully, but these errors were encountered: