Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rust.yml #15

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
strategy:
max-parallel: 3
matrix:
rust: [stable, beta, nightly, 1.83.0, 1.65.0, 1.61.0, 1.57.0]
# TODO: add stable/beta once they're versions >= 1.83
rust: [beta, nightly, 1.83.0, 1.65.0, 1.61.0, 1.57.0]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -68,12 +69,12 @@ jobs:
"rust_stable adt_const_marker alloc"

cargo test --no-default-features --features \
"rust_stable adt_const_marker proc_macros __ui_tests alloc"
# "rust_stable adt_const_marker proc_macros alloc"
"rust_stable adt_const_marker proc_macros alloc"
# "rust_stable adt_const_marker proc_macros __ui_tests alloc"

cargo test --no-default-features --features \
"rust_stable adt_const_marker __ui_tests alloc"
# "rust_stable adt_const_marker alloc"
"rust_stable adt_const_marker alloc"
# "rust_stable adt_const_marker __ui_tests alloc"

MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
echo "Installing latest nightly with Miri"
Expand Down
Loading