summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-05-07 15:53:39 -0400
committerGitHub <noreply@github.com>2022-05-07 15:53:39 -0400
commit460869f2811cf51b8822a39c5161c342d2a19c5a (patch)
treef5144caea9beb5d908be866a8a6c6551bfc03042 /.github
parent4ceaf8d00894a7b9fb84581aa5ec05568142c8fb (diff)
deployment: add arm musl targets (#726)
Adds musl targets to the nightly and deployment workflows.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deployment.yml10
-rw-r--r--.github/workflows/nightly.yml10
2 files changed, 20 insertions, 0 deletions
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
- {