Skip to content

Commit

Permalink
Fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
lemolatoon committed Dec 3, 2024
1 parent f45cf7f commit 94f1734
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,22 @@ jobs:
override: true
components: rustfmt, clippy

- name: Install miri
uses: actions-rs/toolchain@v1
if: matrix.rust == 'nightly'
with:
profile: minimal
toolchain: nightly
override: true
components: miri

- name: miri setup
uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
with:
command: miri
args: setup

- name: Fetch
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -70,16 +86,9 @@ jobs:
command: test
args: --features serde

- name: miri setup
if: matrix.rust == 'nightly'
uses: actions-rs/cargo@v1
with:
command: miri
args: setup

- name: Test bit endian
if: matrix.rust == 'nightly'
uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
with:
command: miri
args: test --target s390x-unknown-linux-gnu --package roaring --lib -- bitmap::serialization::test::test_from_lsb0_bytes
Expand Down

0 comments on commit 94f1734

Please sign in to comment.