From 1cef40eda32e28223feaa575785c01261f9860be Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 1 May 2022 13:04:21 -0700 Subject: [PATCH] Comment the endianness of the miri runs --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f33f3b32..61657f52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,8 +55,10 @@ jobs: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@miri - run: cargo miri test - - run: cargo miri test --target i686-unknown-linux-gnu - - run: cargo miri test --target mips-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) + run: cargo miri test --target mips-unknown-linux-gnu outdated: name: Outdated