summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorYounes El-karama <yelkarama@users.noreply.github.com>2024-01-05 01:06:42 -0500
committerAndrew Gallant <jamslam@gmail.com>2024-01-06 10:21:34 -0500
commit827082a33ae7d86846a103ef14fb9ff297587049 (patch)
treed67fe58453214c65448d60c742490db37f150b0d /.github/workflows/ci.yml
parent6c2a550e1ed190351707dbcb28d5085a89ac0710 (diff)
ci: add more ARM build configurations to CI and release workflows
... it turns out that rustembedded/cross:armv7-unknown-linux-musleabi doesn't exist. And looking more closely, it looks like the Cross project has decided to shake things up and publish images to ghcr instead. So we migrate everything over to that.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b37753e7..d21b85ab 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -75,6 +75,18 @@ jobs:
os: ubuntu-latest
rust: stable
target: aarch64-unknown-linux-gnu
+ - build: stable-arm-gnueabihf
+ os: ubuntu-latest
+ rust: stable
+ target: armv7-unknown-linux-gnueabihf
+ - build: stable-arm-musleabihf
+ os: ubuntu-latest
+ rust: stable
+ target: armv7-unknown-linux-musleabihf
+ - build: stable-arm-musleabi
+ os: ubuntu-latest
+ rust: stable
+ target: armv7-unknown-linux-musleabi
- build: stable-powerpc64
os: ubuntu-latest
rust: stable