This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 36c498d809 MINOR: [CI][C++] Show machine info in Linux GHA jobs 
(#49736)
36c498d809 is described below

commit 36c498d8095671eb88d381745c5824b55c30190d
Author: Antoine Pitrou <[email protected]>
AuthorDate: Tue Apr 14 12:59:03 2026 +0200

    MINOR: [CI][C++] Show machine info in Linux GHA jobs (#49736)
    
    ### 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 https://github.com/apache/arrow/issues/47769).
    
    ### Are these changes tested?
    
    N/A.
    
    ### Are there any user-facing changes?
    
    No.
    
    Authored-by: Antoine Pitrou <[email protected]>
    Signed-off-by: Antoine Pitrou <[email protected]>
---
 .github/workflows/cpp.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml
index 3effb88b60..643322f291 100644
--- a/.github/workflows/cpp.yml
+++ b/.github/workflows/cpp.yml
@@ -109,6 +109,10 @@ jobs:
       LLVM: ${{ matrix.llvm }}
       UBUNTU: ${{ matrix.ubuntu }}
     steps:
+      - name: Show machine info
+        run: |
+          free -h
+          lscpu
       - name: Checkout Arrow
         uses: actions/checkout@v6
         with:

Reply via email to