Skip to content

Commit 51a5e4c

Browse files
committed
Raise minimum compiler for test suite to rust 1.70
With 1.61: error: package `indexmap v2.6.0` cannot be built because it requires rustc 1.63 or newer, while the currently active rustc version is 1.61.0 With 1.63: error: package `toml_datetime v0.6.8` cannot be built because it requires rustc 1.65 or newer, while the currently active rustc version is 1.63.0 With 1.65: error: package `trybuild v1.0.101` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.65.0 Either upgrade to rustc 1.70 or newer, or use cargo update -p [email protected] --precise ver where `ver` is the latest version of `trybuild` supporting rustc 1.65.0
1 parent 8fb92ff commit 51a5e4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
rust: [nightly, beta, stable, 1.61.0]
27+
rust: [nightly, beta, stable, 1.70.0, 1.61.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v4
@@ -39,6 +39,7 @@ jobs:
3939
run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=thiserror_nightly_testing >> $GITHUB_ENV
4040
if: matrix.rust == 'nightly'
4141
- run: cargo test --all
42+
if: matrix.rust != '1.61.0'
4243
- uses: actions/upload-artifact@v4
4344
if: matrix.rust == 'nightly' && always()
4445
with:

0 commit comments

Comments
 (0)