fix: Add missing package to build Because I moved to `rust:alpine` it is necessary to add `musl-dev` so the build works.
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8cae0ac6163c17d90e604b08886035384d529660..e4face2e0022f8a09d390f832b3178fd33a3f9d0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ test: image: rust:alpine stage: test script: - - cargo install cargo2junit + - cargo install cargo2junit musl-dev - cargo test -- -Z unstable-options --format json --report-time | cargo2junit > results.xml only: - master