MINOR: [CI][C++] Show machine info in Linux GHA jobs - #49736
Merged
Conversation
pitrou
marked this pull request as ready for review
April 14, 2026 10:00
pitrou
requested review from
assignUser,
jonkeane,
kou and
raulcd
as code owners
April 14, 2026 10:00
raulcd
approved these changes
Apr 14, 2026
raulcd
left a comment
Member
There was a problem hiding this comment.
LGTM, is this better than the following?
- name: CPU Info
run: |
sysctl -a | grep cpu
sysctl -a | grep "hw.optional"
Maybe we can update the macOS intel step to match this one?
See:
https://github.com/apache/arrow/actions/runs/24392607522/job/71242267624?pr=49736#step:2:29
Member
|
Ok, those doesn't exist on macOS so I was just non-sensing here :) |
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 36c498d. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 4 possible false positives for unstable benchmarks that are known to sometimes produce them. |
Mottl
pushed a commit
to Mottl/arrow
that referenced
this pull request
May 26, 2026
### Rationale for this change Detailed info about available memory and CPU model can help in certain cases, for example to know whether a certain instruction set is available (example in apache#47769). ### Are these changes tested? N/A. ### Are there any user-facing changes? No. Authored-by: Antoine Pitrou <antoine@python.org> Signed-off-by: Antoine Pitrou <antoine@python.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
Detailed info about available memory and CPU model can help in certain cases, for example to know whether a certain instruction set is available (example in #47769).
Are these changes tested?
N/A.
Are there any user-facing changes?
No.