macroblog.rs @ d279a9137601f66685a6bbf1e4f7db162b06e661

fix: Move `musl-dev` to apk

`musl-dev` is alpine package not cargo
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e4face2e0022f8a09d390f832b3178fd33a3f9d0..3f725d988ef641d16a74a3b768658934f653326f 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