Skip to content

Commit d064720

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rust:clippy:
2121
stage: test
2222
image: rust:1.92-alpine3.20
2323
before_script:
24-
- apk add build-base musl-dev linux-headers cmake perl go
24+
- apk add build-base linux-headers cmake perl go
2525
- rustup component add clippy
2626
script:
2727
- cargo clippy --all-features -- -D warnings
@@ -30,15 +30,15 @@ rust:hack:
3030
stage: test
3131
image: rust:1.92-alpine3.20
3232
before_script:
33-
- apk add build-base musl-dev linux-headers cmake perl go cargo-hack
33+
- apk add build-base linux-headers cmake perl go cargo-hack
3434
script:
3535
- cargo hack check --feature-powerset --no-dev-deps --at-least-one-of aws-lc-rs,ring --at-least-one-of rand,getrandom
3636

3737
rust:test:
3838
stage: test
3939
image: rust:1.92-alpine3.23
4040
before_script:
41-
- apk add musl-dev cmake perl go
41+
- apk add cmake perl go
4242
script:
4343
- cargo test
4444
- cargo test --features websocket,portable-atomic

0 commit comments

Comments
 (0)