From c2287b85895cfeb503c0db0a599652d1a642df8d Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 11 Apr 2024 18:44:27 -0700 Subject: [PATCH] FIXUP arm strip --- .github/workflows/ci.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cce17f2..cffaea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -141,17 +141,10 @@ jobs: 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 ' + 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' && + apk add --no-cache build-base groff && + make linux CFLAGS="-static -O2" && make test && strip fvcbm '