-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Move protoc generation to binary crate (#5718) #5742
Conversation
Could we get a CI check, similar to https://github.com/apache/arrow-rs/pull/3927/files#diff-7a5f24a0bed6232c2297eba93812cdaeb26327ba955eabc0a04effc21e95d52bR65 |
Should I create another yaml or add check to existing one? |
I think adding it to https://github.com/apache/arrow-datafusion/blob/main/.github/workflows/rust.yml would make sense |
uses: ./.github/actions/setup-builder | ||
- name: Run gen | ||
run: ./regen.sh | ||
working-directory: ./datafusion/proto |
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.
This part shouldn't be necessary, as the script already handles this, but I suppose it can't hurt
I verified this works great -- #5760 (comment) |
@@ -54,8 +54,3 @@ serde_json = { version = "1.0", optional = true } | |||
[dev-dependencies] | |||
doc-comment = "0.3" | |||
tokio = "1.18" | |||
|
|||
[build-dependencies] | |||
# Pin these dependencies so that the generated output is deterministic |
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.
🎉
Which issue does this PR close?
Closes #5718
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?