Skip to content

Commit

Permalink
fix HW info
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Dec 3, 2023
1 parent d7b8668 commit 7563a21
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,17 @@ jobs:
gcc -v
clang -v
rustup --version
if [[ '${{ matrix.target.cpu }}' != 'i386' ]]; then
if [[ '${{ matrix.target.cpu }}' != 'i386' && '${{ runner.os }}' != 'Windows' ]]; then
llvm-config --version
fi
if [[ '${{ runner.os }}' != 'Windows' ]]; then
if [[ '${{ runner.os }}' == 'Linux' ]]; then
cat /proc/cpuinfo
fi
if [[ '${{ runner.os }}' == 'macOS' ]]; then
sysctl -a | grep machdep.cpu
sysctl -a | grep hw | grep cpu
sysctl -a | grep hw.optional
fi
- name: Run Constantine as C library tests (with Assembly)
if: matrix.target.BACKEND == 'ASM'
Expand Down

0 comments on commit 7563a21

Please sign in to comment.