-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-43547: [R][CI] Add recheck workflow for checking reverse dependencies on GHA #43784
base: main
Are you sure you want to change the base?
Conversation
|
I just pushed a fix that should make CI green across the board. |
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.
Via workflow_dispatch instead of crossbow, nice. I am not sure if re-usable workflows are enabled for the apache org and we will likely have an issue with the workflow not being allow listed...
Thanks for taking a look @assignUser. Re:
Would this make more sense (and still be doable) as a crossbow command? Now that you mention it, it would be a bit more consistent if it were built into crossbow rather than triggered via workflow_dispatch. Seems like it'd be possible and I'm happy to tinker with that. |
Having it in crossbow would be more 'on-brand' for our CI and we would avoid having to allow list the workflows. You'll just need to convert it into a push triggered workflow and add an entry to |
💯 agreed with @assignUser here LMK if I can help point out places to do ^^^ I've done one or two in my day 😝 |
597e2fe
to
c12a71a
Compare
I worked on this a bit tonight and, while I can submit my new crossbow job, I'm stuck at figuring out a reasonable way to get the recheck job to point at an Arrow source checkout. Since the job's workflow runs on the crossbow repo instead of arrow, recheck clones that instead of arrow and the job fails. See recheck.yml. I think the best solution might be to add support to recheck for cloning an arbitrary repo which I think might be generally useful (and therefore accepted). |
Thanks @amoeba Yeah, adding a repo/ref input for the checkout seems like the way to go. |
c00d26c
to
7766852
Compare
I've got this working now. Figuring out how all the variables get propagated was fun. You can see the new crossbow job in action on #44523 (comment). I filed an issue against recheck and sent in a PR that adds the features we need here. I'll mark these as ready for review again once,
|
No that's good, as it's in crossbow we are more flexible. |
Great, thanks @assignUser. The upstream recheck repo merged my changes so I updated this PR to point there and point to a specific git sha. This is ready for a final review if you have a sec. |
Actually let me update the PR body :) Edit: Done. |
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.
Thanks for pushing on this! One small change
Rationale for this change
See #43547.
What changes are included in this PR?
Adds two new new crossbow tasks for performing reverse dependency checking using https://github.com/r-devel/recheck:
r-recheck-most
r-recheck-strong
Are these changes tested?
Yes. #44523 (comment).
Are there any user-facing changes?
No.
Fixes #43547.