build: Switch GitHub action ARM64 builds to musl

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2024-02-22 16:17:09 +00:00
parent 68dd467104
commit 6ec83c7d8e

View File

@ -11,9 +11,9 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Run unit tests - name: Run unit tests (musl)
run: scripts/dev_cli.sh tests --unit run: scripts/dev_cli.sh tests --unit --libc musl
- name: Load openvswitch module - name: Load openvswitch module
run: sudo modprobe openvswitch run: sudo modprobe openvswitch
- name: Run integration tests - name: Run integration tests (musl)
run: scripts/dev_cli.sh tests --integration run: scripts/dev_cli.sh tests --integration --libc musl