From 7a984f0692d642b8e6ce9b19bd5c68cf8d0a6916 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Thu, 3 Aug 2023 23:54:44 +0200 Subject: [PATCH] feat: with musl instead Signed-off-by: kjuulh --- .drone.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 4407133..a9d5907 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,10 @@ steps: path: /drone/src/target/debug commands: - set -e - - cargo build + - apt update && apt install -y + - apt install musl-tools pkg-config + - rustup target add x86_64-unknown-linux-musl + - cargo build --target=x86_64-unknown-linux-musl - name: load_secret image: debian:buster-slim