From 29b85b9bb0a2f6f08713c25af4932ef01374ccbb Mon Sep 17 00:00:00 2001 From: matteo-cristino Date: Tue, 22 Oct 2024 12:11:32 +0200 Subject: [PATCH] ci: add arm32 build test --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b4928fda..aee431fa9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -176,6 +176,19 @@ jobs: make clean make -f build/apple-ios.mk ios-sim CCACHE=1 + arm32-build: + name: 🦾 ARM32 build test + needs: [reuse, c-lint, lua-lint] + if: "github.event_name == 'pull_request'" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pguyot/arm-runner-action@v2 + with: + commands: | + sudo apt install -yq jq libreadline-dev cmake xxd + make -f build/linux.mk + go-build-check: name: 🐹 go build & checks needs: [reuse, c-lint, lua-lint]