summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandy.boot <bootandy@gmail.com>2023-05-07 11:50:49 +0100
committerGitHub <noreply@github.com>2023-05-07 11:50:49 +0100
commit658f8d2e2b3ddbf256e1830fc01ad8b029ce010c (patch)
tree90a2b3570ba031cbfe269b422523e892871a0fde
parent2c2333679444c127e623e1e7c687acec554327c9 (diff)
ci: Add musl arm build
ci: Add musl arm build
-rw-r--r--.github/workflows/CICD.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index d1d9824..507218e 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -98,6 +98,11 @@ jobs:
}
- {
os: ubuntu-latest,
+ target: arm-unknown-linux-musleabi,
+ use-cross: use-cross,
+ }
+ - {
+ os: ubuntu-latest,
target: i686-unknown-linux-gnu,
use-cross: use-cross,
}
@@ -205,7 +210,9 @@ jobs:
echo set-output name=CARGO_TEST_OPTIONS::${CARGO_TEST_OPTIONS}
echo ::set-output name=CARGO_TEST_OPTIONS::${CARGO_TEST_OPTIONS}
# * strip executable?
- STRIP="strip" ; case ${{ matrix.job.target }} in arm-unknown-linux-gnueabihf) STRIP="arm-linux-gnueabihf-strip" ;; *-pc-windows-msvc) STRIP="" ;; aarch64-unknown-linux-gnu) STRIP="aarch64-linux-gnu-strip" ;; aarch64-unknown-linux-musl) STRIP="" ;;esac;
+ STRIP="strip" ; case ${{ matrix.job.target }} in arm-unknown-linux-gnueabihf) STRIP="arm-linux-gnueabihf-strip" ;; *-pc-windows-msvc) STRIP="" ;; aarch64-unknown-linux-gnu) STRIP="aarch64-linux-gnu-strip" ;; aarch64-unknown-linux-musl) STRIP="" ;; armv7-unknown-linux-musleabi) STRIP="" ;; arm-unknown-linux-musleabi) STRIP="" ;; esac;
+
+
echo set-output name=STRIP::${STRIP}
echo ::set-output name=STRIP::${STRIP}
- name: Create all needed build/work directories