Skip to content

Commit

Permalink
Print architecture info in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Apr 2, 2024
1 parent 13bb038 commit a8964cc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Arch (Ubuntu / macOS)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: uname -a

- name: Arch (Windows)
if: matrix.os == 'windows-latest'
run: echo %PROCESSOR_ARCHITECTURE%

- name: Install LLVM and Clang
uses: ./
with:
Expand Down

0 comments on commit a8964cc

Please sign in to comment.