aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-05-14 20:21:26 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-05-14 20:21:26 +0200
commitd279a9137601f66685a6bbf1e4f7db162b06e661 (patch)
tree3581cc8204c2a721b3e94f0d400d5dbe3ec74b03
parenteb5a9d2440c12f11343960f17abd96cbf7974867 (diff)
downloadmacroblog.rs-d279a9137601f66685a6bbf1e4f7db162b06e661.tar.gz
macroblog.rs-d279a9137601f66685a6bbf1e4f7db162b06e661.tar.bz2
macroblog.rs-d279a9137601f66685a6bbf1e4f7db162b06e661.zip
fix: Move `musl-dev` to apk
`musl-dev` is alpine package not cargo
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e4face2..3f725d9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,8 @@ test:
image: rust:alpine
stage: test
script:
- - cargo install cargo2junit musl-dev
+ - apk add musl-dev
+ - cargo install cargo2junit
- cargo test -- -Z unstable-options --format json --report-time | cargo2junit > results.xml
only:
- master