From f8bd6c2dd58da37fdda10c61fdb8903f65ec5bce Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier <47638216+alexpasmantier@users.noreply.github.com> Date: Fri, 21 Mar 2025 13:03:58 +0100 Subject: [PATCH] ci(x86): add statically linked musl build for x86_64 (#429) Fixes #339 ``` $ ldd target/x86_64-unknown-linux-musl/release/tv statically linked ``` --- .github/workflows/cd.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index fabf369..b30a554 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -67,6 +67,12 @@ jobs: architecture: x86_64 binary-postfix: "" use-cross: false + - os: ubuntu-latest + os-name: linux + target: x86_64-unknown-linux-musl + architecture: x86_64 + binary-postfix: "" + use-cross: false - os: windows-latest os-name: windows target: x86_64-pc-windows-msvc