Skip to content

Commit

Permalink
Auto merge of #14711 - epage:msrc-ci, r=weihanglo
Browse files Browse the repository at this point in the history
docs(ci): Don't constrainty latest_deps job by MSRV

Missed this in #14639
  • Loading branch information
bors committed Oct 21, 2024
2 parents b44c54d + 65aff1f commit edd36eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/doc/src/guide/continuous-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,18 @@ jobs:
name: Latest Dependencies
runs-on: ubuntu-latest
continue-on-error: true
env:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- run: cargo update --verbose
- run: cargo build --verbose
- run: cargo test --verbose
```
Notes:
- [`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).

For projects with higher risks of per-platform or per-Rust version failures,
more combinations may want to be tested.

Expand Down

0 comments on commit edd36eb

Please sign in to comment.