Skip to content

Commit fdb9d18

Browse files
committed
ci: fix MSRV jobs with cargo update
1 parent eef97ad commit fdb9d18

File tree

6 files changed

+477
-309
lines changed

6 files changed

+477
-309
lines changed

.github/workflows/cont_integration.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ jobs:
4848
profile: minimal
4949
override: true
5050
components: rustfmt, clippy
51+
- name: Pin dependencies for MSRV
52+
if: matrix.rust == '1.57.0'
53+
run: |
54+
cargo update
55+
cargo update -p log --precise 0.4.18
56+
cargo update -p hashlink --precise 0.8.0
57+
cargo update -p tempfile:3.7.0 --precise 3.6.0
58+
cargo update -p base64ct --precise 1.5.3
5159
- name: Build
5260
run: cargo build --no-default-features --features repl,${{ matrix.features }} --locked
5361
- name: Clippy
@@ -80,7 +88,7 @@ jobs:
8088
- run: sudo apt-get update || exit 1
8189
- run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1
8290
- name: Set default toolchain
83-
run: rustup default 1.57.0 # MSRV
91+
run: rustup default 1.65.0
8492
- name: Set profile
8593
run: rustup set profile minimal
8694
- name: Add target wasm32

0 commit comments

Comments
 (0)