From 59d70cbae046a595c6bb234c3ec251b20f949245 Mon Sep 17 00:00:00 2001 From: Ciro Lo Sapio Date: Wed, 14 Aug 2024 13:53:11 +0200 Subject: [PATCH] chore: build with `x86_64-unknown-linux-musl` target (#100) --- .github/workflows/push.yml | 7 +++++++ .github/workflows/release.yml | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index c9f1ebd..e80c1e8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,6 +15,9 @@ jobs: - os: linux arch: "amd64" rust-target: "x86_64-unknown-linux-gnu" + - os: linux + arch: "amd64-musl" + rust-target: "x86_64-unknown-linux-musl" - os: linux arch: "arm64" rust-target: "aarch64-unknown-linux-gnu" @@ -66,6 +69,10 @@ jobs: arch: "amd64" rust-target: "x86_64-unknown-linux-gnu" runs-on: ubuntu-latest + - os: linux + arch: "amd64-musl" + rust-target: "x86_64-unknown-linux-musl" + runs-on: ubuntu-latest - os: linux arch: "arm64" rust-target: "aarch64-unknown-linux-gnu" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2847fc..cd405df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,10 @@ jobs: arch: "amd64" rust-target: "x86_64-unknown-linux-gnu" runs-on: ubuntu-latest + - os: linux + arch: "amd64-musl" + rust-target: "x86_64-unknown-linux-musl" + runs-on: ubuntu-latest - os: linux arch: "arm64" rust-target: "aarch64-unknown-linux-gnu"