-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-47836: [C++] Fix Meson configuration after bpacking changes #47837
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
Conversation
|
|
| if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then | ||
| ARROW_BUILD_EXAMPLES=OFF # TODO: Remove this | ||
| meson test \ | ||
| --max-lines=0 \ |
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.
I'm not familiar with this option but does this disable log output on failure?
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.
By default the test log only shows 100 lines of output. When there are many tests, the error sometimes isn't shown in the logs because it gets buffered out by other content. This makes it so the entire test log is shown on error
We made this same change in #47282, so I figured I'd just pull forwards here to reduce the diff on the other PR. Happy to drop this particular line for now
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. I'm not have a strong opinion for it. Let's keep this in this PR.
kou
left a comment
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.
+1
| if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then | ||
| ARROW_BUILD_EXAMPLES=OFF # TODO: Remove this | ||
| meson test \ | ||
| --max-lines=0 \ |
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. I'm not have a strong opinion for it. Let's keep this in this PR.
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 9640f78. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
…pache#47837) ### Rationale for this change This fixes the Meson configuration ### What changes are included in this PR? Added new bpacking modules to the Meson configuration ### Are these changes tested? Yes ### Are there any user-facing changes? No * GitHub Issue: apache#47836 Authored-by: Will Ayd <william.ayd@icloud.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Rationale for this change
This fixes the Meson configuration
What changes are included in this PR?
Added new bpacking modules to the Meson configuration
Are these changes tested?
Yes
Are there any user-facing changes?
No