Skip to content

Commit edd36eb

Browse files
committed
Auto merge of #14711 - epage:msrc-ci, r=weihanglo
docs(ci): Don't constrainty latest_deps job by MSRV Missed this in #14639
2 parents b44c54d + 65aff1f commit edd36eb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/doc/src/guide/continuous-integration.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,18 @@ jobs:
165165
name: Latest Dependencies
166166
runs-on: ubuntu-latest
167167
continue-on-error: true
168+
env:
169+
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
168170
steps:
169171
- uses: actions/checkout@v4
170172
- run: rustup update stable && rustup default stable
171173
- run: cargo update --verbose
172174
- run: cargo build --verbose
173175
- run: cargo test --verbose
174176
```
177+
Notes:
178+
- [`CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS`](../reference/config.md#resolverincompatible-rust-versions) is set to ensure the [resolver](../reference/resolver.md) doesn't limit selected dependencies because of your project's [Rust version](../reference/rust-version.md).
179+
175180
For projects with higher risks of per-platform or per-Rust version failures,
176181
more combinations may want to be tested.
177182

0 commit comments

Comments
 (0)