Second attempt to fix rust 1.45 CI

This commit is contained in:
Graham Esau 2022-10-02 19:59:54 +01:00
parent cf0cf2b1be
commit 84c2a2bb54

View file

@ -37,8 +37,8 @@ jobs:
toolchain: ${{ matrix.rust }} toolchain: ${{ matrix.rust }}
override: true override: true
- if: matrix.rust == '1.45.0' - if: matrix.rust == '1.45.0'
# work-around https://github.com/serde-rs/serde/issues/2255 # work-around https://github.com/serde-rs/serde/issues/2255 and similar crate/rustc compatibility issues
run: cargo update -p serde --precise 1.0.142 && cargo update -p once_cell --precise 1.10.0 run: cargo update -p serde --precise 1.0.142 && cargo update -p once_cell --precise 1.10.0 && cargo update -p pretty_assertions --precise 1.2.1
- name: Check with no feature flags - name: Check with no feature flags
run: cargo check --verbose --no-default-features run: cargo check --verbose --no-default-features
continue-on-error: ${{ matrix.allow_failure }} continue-on-error: ${{ matrix.allow_failure }}