Skip to content

Commit b613153

Browse files
chore(ci): stop installing musl-dev manually
It's already included by default starting from rust-lang/docker-rust#259
1 parent ee84f0e commit b613153

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ rust:clippy:
2121
stage: test
2222
image: rust:1.92-alpine3.23
2323
before_script:
24-
- apk add musl-dev
2524
- rustup component add clippy
2625
script:
2726
- cargo clippy --all-features -- -D warnings
@@ -30,14 +29,14 @@ rust:hack:
3029
stage: test
3130
image: rust:1.92-alpine3.23
3231
before_script:
33-
- apk add musl-dev cargo-hack
32+
- apk add cargo-hack
3433
script:
3534
- cargo hack check --feature-powerset --no-dev-deps
3635

3736
rust:test:
3837
stage: test
3938
image: rust:1.92-alpine3.23
4039
before_script:
41-
- apk add musl-dev libpq-dev
40+
- apk add libpq-dev
4241
script:
4342
- cargo test --all-features

0 commit comments

Comments
 (0)