File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 60
60
- name : Check (without default features)
61
61
run : cargo check --workspace --no-default-features
62
62
- name : Check (loom)
63
- run : RUSTFLAGS="--cfg loom" cargo check --workspace
63
+ run : RUSTFLAGS="--cfg loom" cargo check --workspace --features loom
64
64
65
65
miri :
66
66
name : Miri
Original file line number Diff line number Diff line change @@ -30,12 +30,13 @@ rayon = { version = "1.10.0", optional = true }
30
30
# Stuff we want Update impls for by default
31
31
compact_str = { version = " 0.9" , optional = true }
32
32
thin-vec = " 0.2.13"
33
- loom = " 0.7.2"
33
+ loom = { version = " 0.7.2" , optional = true }
34
34
35
35
[features ]
36
36
default = [" salsa_unstable" , " rayon" , " macros" ]
37
37
# FIXME: remove `salsa_unstable` before 1.0.
38
38
salsa_unstable = []
39
+ loom = [" dep:loom" ]
39
40
macros = [" dep:salsa-macros" ]
40
41
41
42
# This interlocks the `salsa-macros` and `salsa` versions together
Original file line number Diff line number Diff line change 5
5
cargo + nightly miri test --no-fail-fast --all-features
6
6
7
7
loom :
8
- RUSTFLAGS=" --cfg loom" cargo check --workspace
8
+ RUSTFLAGS=" --cfg loom" cargo check --workspace --features loom
9
9
10
10
all : test miri
You can’t perform that action at this time.
0 commit comments