-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Regression: Interrupted system call in CI #14350
Comments
@straight-shoota @HertzDevil the solaris PR changes the signal handler to use |
Reading the signal(7) man page, we might just need to add the |
From the
|
It looks like none of the bindings define |
I pushed without checking 🤦 Luckily, I have a copy of many That being said, I wish I could just say "I want SA_RESTART please figure its actual value". |
Yeah, that would lead to very surprising results 😆 |
Looks like we have a regression in master. The build for current HEAD is broken:
https://github.com/crystal-lang/crystal/actions/runs/8178703060/job/22363225395
Error message:
A very similar error had previously appeared in #14343 (failed job) but it went through after a retry, so I considered it a fluke.
It's entirely plausible that this PR is causing the error. It does some changes to the IO system interface.
But it could also be something else. We had some PRs that change concurrency lately, for example.
The master CI workflow has another interesting failure in the MT job: https://github.com/crystal-lang/crystal/actions/runs/8178703060/job/22363221791
It seems that the state memory of
Colorize
is compromised because it inserts reset codes (0;
) even when the last state is default and thus wouldn't require it. Not sure if this is even connected to the interrupted syscall, but it would point towards a concurrency issue.The text was updated successfully, but these errors were encountered: