Skip to content

Commit 815551c

Browse files
committed
ci: pin libc for msrv job
1 parent 7c03fc9 commit 815551c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,15 @@ jobs:
3030
matrix:
3131
rust:
3232
- 1.13
33-
target:
34-
- x86_64-unknown-linux-gnu
3533

3634
steps:
3735
- uses: actions/checkout@v3
3836
- name: Run tests
3937
run: |
4038
rustup default ${{ matrix.rust }}
41-
rustup target add ${{ matrix.target }}
42-
cargo test --verbose --target ${{ matrix.target }}
39+
cargo update
40+
cargo update -p libc --precise 0.2.26
41+
cargo test --verbose
4342
4443
test-linux:
4544
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)