Skip to content

Commit d3d13a8

Browse files
committed
Fix 1, updated CI config
1 parent 8a05dba commit d3d13a8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ jobs:
6969
"rust_stable adt_const_marker alloc"
7070
7171
cargo test --no-default-features --features \
72-
"rust_stable adt_const_marker proc_macros alloc"
73-
# "rust_stable adt_const_marker proc_macros __ui_tests alloc"
72+
"rust_stable adt_const_marker generic_const_exprs proc_macros alloc"
73+
# "rust_stable adt_const_marker generic_const_exprs proc_macros __ui_tests alloc"
7474
7575
cargo test --no-default-features --features \
76-
"rust_stable adt_const_marker alloc"
77-
# "rust_stable adt_const_marker __ui_tests alloc"
76+
"rust_stable adt_const_marker generic_const_exprs alloc"
77+
# "rust_stable adt_const_marker generic_const_exprs __ui_tests alloc"
7878
7979
MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
8080
echo "Installing latest nightly with Miri"
@@ -88,4 +88,4 @@ jobs:
8888
cargo clean
8989
9090
env RUST_BACKTRACE=0 cargo miri test --no-default-features \
91-
--features "${{env.rustv}} adt_const_marker proc_macros alloc"
91+
--features "${{env.rustv}} adt_const_marker generic_const_exprs proc_macros alloc"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,6 @@ pub mod __ {
660660

661661

662662

663-
#[cfg(all(doctest, feature = "rust_stable"))]
663+
#[cfg(all(doctest, feature = "generic_const_exprs"))]
664664
#[doc = include_str!("../README.md")]
665665
pub struct ReadmeTest;

0 commit comments

Comments
 (0)