From eb5a9d2440c12f11343960f17abd96cbf7974867 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sat, 14 May 2022 20:17:30 +0200 Subject: fix: Add missing package to build Because I moved to `rust:alpine` it is necessary to add `musl-dev` so the build works. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3