From 6ec83c7d8ee17e7db00a8e0be70484145d7171aa Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 22 Feb 2024 16:17:09 +0000 Subject: [PATCH] build: Switch GitHub action ARM64 builds to musl Signed-off-by: Rob Bradford --- .github/workflows/integration-arm64.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-arm64.yaml b/.github/workflows/integration-arm64.yaml index fc48655c5..da6e9432e 100644 --- a/.github/workflows/integration-arm64.yaml +++ b/.github/workflows/integration-arm64.yaml @@ -11,9 +11,9 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Run unit tests - run: scripts/dev_cli.sh tests --unit + - name: Run unit tests (musl) + run: scripts/dev_cli.sh tests --unit --libc musl - name: Load openvswitch module run: sudo modprobe openvswitch - - name: Run integration tests - run: scripts/dev_cli.sh tests --integration \ No newline at end of file + - name: Run integration tests (musl) + run: scripts/dev_cli.sh tests --integration --libc musl \ No newline at end of file