From db9a00c2768724fcd6d258a94cba61c3c46170dd Mon Sep 17 00:00:00 2001 From: David Chalifoux Date: Tue, 30 Apr 2024 20:48:07 -0400 Subject: [PATCH] Add statically linked builds --- .github/workflows/release.yml | 4 ++++ Cargo.lock | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8df065b..f7b46c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,10 +29,14 @@ jobs: include: - target: aarch64-unknown-linux-gnu os: ubuntu-latest + - target: aarch64-unknown-linux-musl + os: ubuntu-latest - target: aarch64-apple-darwin os: macos-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest + - target: x86_64-unknown-linux-musl + os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest # Universal macOS binary is supported as universal-apple-darwin. diff --git a/Cargo.lock b/Cargo.lock index 1e42bdc..4a435ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,7 +653,7 @@ dependencies = [ [[package]] name = "kaput-cli" -version = "2.2.0" +version = "2.2.1" dependencies = [ "bytefmt", "clap",