Skip to content

Commit 95f05b8

Browse files
committed
Work around CI failure with old rust version
The libc crate broke compatibility with our MSRV without a semver version bump. Force using a sufficiently old libc version in our CI.
1 parent 473db93 commit 95f05b8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
toolchain: ${{ matrix.rust }}
3737
target: ${{ matrix.target }}
3838

39+
- if: ${{ matrix.rust=='1.56.1' }}
40+
run: cargo update --precise 0.2.163 libc
3941
- run: cargo check --target=${{ matrix.TARGET }}
4042
- run: cargo build --target=${{ matrix.TARGET }}
4143
- run: cargo test --target=${{ matrix.TARGET }}

0 commit comments

Comments
 (0)