From c4e732e0496ffe14f1f4f8ea69c1b2df7be1812e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 17 Nov 2023 23:06:02 +0100 Subject: [PATCH] Add Linux 32bits target to CI --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fa8b00..24c6fb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,26 @@ jobs: if: ${{ matrix.buildType == 'Release' }} run: | time make test262 + linux-32bits: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: jirutka/setup-alpine@v1 + with: + arch: x86 + packages: "build-base make cmake" + - name: build + shell: alpine.sh {0} + run: | + make + - name: stats + shell: alpine.sh {0} + run: | + make stats + - name: test + shell: alpine.sh {0} + run: | + make test linux-examples: runs-on: ubuntu-latest steps: