macroblog.rs @ d279a9137601f66685a6bbf1e4f7db162b06e661

fix: Move `musl-dev` to apk

`musl-dev` is alpine package not cargo
 1diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
 2index e4face2e0022f8a09d390f832b3178fd33a3f9d0..3f725d988ef641d16a74a3b768658934f653326f 100644
 3--- a/.gitlab-ci.yml
 4+++ b/.gitlab-ci.yml
 5@@ -6,7 +6,8 @@ test:
 6     image: rust:alpine
 7     stage: test
 8     script:
 9-        - cargo install cargo2junit musl-dev
10+        - apk add musl-dev
11+        - cargo install cargo2junit
12         - cargo test -- -Z unstable-options --format json --report-time | cargo2junit > results.xml
13     only:
14         - master