We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8073fc1 + 94a2aad commit b4bc643Copy full SHA for b4bc643
.github/workflows/ci.yml
@@ -80,16 +80,20 @@ jobs:
80
- run: cargo check --locked
81
82
miri:
83
- name: Miri
+ name: Miri (${{matrix.name}})
84
runs-on: ubuntu-latest
85
strategy:
86
fail-fast: false
87
matrix:
88
- target:
89
- - x86_64-unknown-linux-gnu
90
- - powerpc64-unknown-linux-gnu
91
- - i686-unknown-linux-gnu
92
- - mips-unknown-linux-gnu
+ include:
+ - name: 64-bit little endian
+ target: x86_64-unknown-linux-gnu
+ - name: 64-bit big endian
+ target: powerpc64-unknown-linux-gnu
93
+ - name: 32-bit little endian
94
+ target: i686-unknown-linux-gnu
95
+ - name: 32-bit big endian
96
+ target: mips-unknown-linux-gnu
97
env:
98
MIRIFLAGS: -Zmiri-strict-provenance
99
timeout-minutes: 45
0 commit comments