From 460869f2811cf51b8822a39c5161c342d2a19c5a Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sat, 7 May 2022 15:53:39 -0400 Subject: [PATCH] deployment: add arm musl targets (#726) Adds musl targets to the nightly and deployment workflows. --- .github/workflows/deployment.yml | 10 ++++++++++ .github/workflows/nightly.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index d984971a..42dbd8e3 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -105,6 +105,11 @@ jobs: target: "aarch64-unknown-linux-gnu", cross: true, } + - { + os: "ubuntu-18.04", + target: "aarch64-unknown-linux-musl", + cross: true, + } # armv7 - { @@ -112,6 +117,11 @@ jobs: target: "armv7-unknown-linux-gnueabihf", cross: true, } + - { + os: "ubuntu-18.04", + target: "armv7-unknown-linux-musleabihf", + cross: true, + } # PowerPC 64 LE - { diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 971664cc..7b2d1ea2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -101,6 +101,11 @@ jobs: target: "aarch64-unknown-linux-gnu", cross: true, } + - { + os: "ubuntu-18.04", + target: "aarch64-unknown-linux-musl", + cross: true, + } # armv7 - { @@ -108,6 +113,11 @@ jobs: target: "armv7-unknown-linux-gnueabihf", cross: true, } + - { + os: "ubuntu-18.04", + target: "armv7-unknown-linux-musleabihf", + cross: true, + } # PowerPC 64 LE - {