Skip to content

Commit 94a2aad

Browse files
committed
Improve job names for miri jobs
1 parent 8073fc1 commit 94a2aad

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,20 @@ jobs:
8080
- run: cargo check --locked
8181

8282
miri:
83-
name: Miri
83+
name: Miri (${{matrix.name}})
8484
runs-on: ubuntu-latest
8585
strategy:
8686
fail-fast: false
8787
matrix:
88-
target:
89-
- x86_64-unknown-linux-gnu
90-
- powerpc64-unknown-linux-gnu
91-
- i686-unknown-linux-gnu
92-
- mips-unknown-linux-gnu
88+
include:
89+
- name: 64-bit little endian
90+
target: x86_64-unknown-linux-gnu
91+
- name: 64-bit big endian
92+
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
9397
env:
9498
MIRIFLAGS: -Zmiri-strict-provenance
9599
timeout-minutes: 45

0 commit comments

Comments
 (0)