Skip to content

Commit

Permalink
Add miri on a 64-bit big endian target
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jun 29, 2022
1 parent 82be7d1 commit 9e5c971
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -57,7 +57,10 @@ jobs:
- uses: dtolnay/install@xargo
with:
bin: xargo-check
- run: cargo miri test
- name: Run cargo miri test (64-bit little endian)
run: cargo miri test --target x86_64-unknown-linux-gnu
- name: Run cargo miri test (64-bit big endian)
run: cargo miri test --target powerpc64-unknown-linux-gnu
- name: Run cargo miri test (32-bit little endian)
run: cargo miri test --target i686-unknown-linux-gnu
- name: Run cargo miri test (32-bit big endian)
Expand Down

0 comments on commit 9e5c971

Please sign in to comment.