We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dde8c1c commit 42960bdCopy full SHA for 42960bd
.github/workflows/rust.yml
@@ -46,4 +46,11 @@ jobs:
46
run: rustup +$NIGHTLY component add miri
47
48
- name: Run tests under Miri
49
- run: cargo +$NIGHTLY miri test
+ run: cargo +$NIGHTLY miri test --workspace --exclude ilex
50
+
51
+ # Most of ilex's tests are extremely slow under Miri.
52
+ # The LLVM syntax test alone takes 10 minutes or so on a GH runner.
53
+ - name: Run some `ilex` tests under Miri
54
+ run: |
55
+ cargo +$NIGHTLY miri test -p ilex --lib
56
+ cargo +$NIGHTLY miri test -p ilex --test greedy
0 commit comments