Skip to content

Commit 7c7a7d9

Browse files
authored
Fix CI (#160)
1 parent 572e9a5 commit 7c7a7d9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
override: true
2929
- name: Checkout
3030
uses: actions/checkout@v3
31+
- name: Copy MSRV Lock
32+
run: make msrv-lock
3133
- name: Build
3234
env:
3335
CARGO_BUILD_TARGET: ${{ matrix.target }}
@@ -76,6 +78,8 @@ jobs:
7678
run: |
7779
sudo apt-get update
7880
sudo apt-get install gcc-multilib
81+
- name: Copy MSRV Lock
82+
run: make msrv-lock
7983
- name: Test
8084
env:
8185
CARGO_BUILD_TARGET: ${{ matrix.target }}
@@ -124,6 +128,8 @@ jobs:
124128
curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v4.0.0/wasmtime-v4.0.0-x86_64-linux.tar.xz
125129
tar xvf wasmtime-v4.0.0-x86_64-linux.tar.xz
126130
echo `pwd`/wasmtime-v4.0.0-x86_64-linux >> $GITHUB_PATH
131+
- name: Copy MSRV Lock
132+
run: make msrv-lock
127133
- name: Test
128134
env:
129135
CARGO_BUILD_TARGET: ${{ matrix.target }}

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ lint:
3333
@rustup component add clippy 2> /dev/null
3434
@cargo clippy --examples --tests
3535

36-
.PHONY: all doc build check test format format-check lint check-minver
36+
msrv-lock:
37+
@cargo update -p proptest --precise=1.0.0
38+
39+
.PHONY: all doc build check test format format-check lint check-minver msrv-lock

0 commit comments

Comments
 (0)