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 '