Skip to content

Commit

Permalink
FIXUP add armv7
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Mar 26, 2024
1 parent 05cacaf commit 856d1b6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,3 +216,33 @@ jobs:
with:
name: 'fvcbm.com'
path: fvcbm

alpine-3_19-armv7:
name: 'Alpine 3.19 with MUSL on armv7'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/arm
- name: 'Perform install, build, test'
run: >
docker run
--rm
-v "$(pwd):/${{ github.workspace }}"
-w ${{ github.workspace }}
--platform linux/arm
alpine:3.19 sh -c '
cat /etc/os-release &&
apk add --no-cache
build-base
groff &&
make linux CFLAGS='-static -O2' &&
make test &&
strip fvcbm
'
- uses: actions/upload-artifact@v4
with:
name: 'fvcbm-linux-arm'
path: i386root/root/fvcbm/fvcbm

0 comments on commit 856d1b6

Please sign in to comment.