From a1f00b801be15eaf544a11958320b0df68c4bca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 24 Nov 2023 13:58:20 +0100 Subject: [PATCH 1/2] Add MinGW 32 CI target --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 706c7d2d2..57e9cf0e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -226,6 +226,7 @@ jobs: matrix: buildType: [Debug, Release] sys: + - mingw32 - mingw64 - ucrt64 defaults: From a60c0af925e12e610b2720a5b894914e26cbae7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 24 Nov 2023 14:00:50 +0100 Subject: [PATCH 2/2] Simplify code in CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57e9cf0e1..41e58d945 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,9 @@ jobs: time make test262 linux-32bits: runs-on: ubuntu-latest + defaults: + run: + shell: alpine.sh {0} steps: - uses: actions/checkout@v3 - uses: jirutka/setup-alpine@v1 @@ -47,15 +50,12 @@ jobs: 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: