Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Oct 4, 2023
1 parent 2146773 commit b814a2e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,17 @@ jobs:
echo "RUSTFLAGS=-C target-feature=+crt-static" >> $GITHUB_ENV
shell: bash

- if: ${{ !contains(matrix.host_os, 'linux') }}
run: |
cat /proc/cpuinfo | grep "^flags" | head -n1
- if: ${{ !contains(matrix.host_os, 'macos') }}
run: |
sysctl -a | grep machdep.cpu.features
- if: ${{ !contains(matrix.host_os, 'windows') }}
run: |
mk/cargo.sh test -vv --all-targets --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }}
mk/cargo.sh test -vv --all-targets --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }} -- --nocapture
- if: ${{ contains(matrix.host_os, 'windows') }}
run: |
Expand Down

0 comments on commit b814a2e

Please sign in to comment.