diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-14 20:17:30 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-14 20:17:30 +0200 |
commit | eb5a9d2440c12f11343960f17abd96cbf7974867 (patch) | |
tree | 5fd7426c348cbec50dc58adf0e420480699af205 | |
parent | e964ec8f74b644d66ca166a7524adcc3a82709c9 (diff) | |
download | macroblog.rs-eb5a9d2440c12f11343960f17abd96cbf7974867.tar.gz macroblog.rs-eb5a9d2440c12f11343960f17abd96cbf7974867.tar.bz2 macroblog.rs-eb5a9d2440c12f11343960f17abd96cbf7974867.zip |
fix: Add missing package to build
Because I moved to `rust:alpine` it is necessary to add `musl-dev` so
the build works.
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8cae0ac..e4face2 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 |