From 50a57b255f866d7e87534dc44b7c0acdb004ee49 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Fri, 28 Jul 2023 09:07:05 -0700 Subject: [PATCH] Add x86-mingw32 to CI Even though GitHub Actions doesn't support x86-mingw32 as a runtime, we can still build it to ensure it builds properly. --- .github/workflows/precompiled.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/precompiled.yml b/.github/workflows/precompiled.yml index 9ba5857..0d53179 100644 --- a/.github/workflows/precompiled.yml +++ b/.github/workflows/precompiled.yml @@ -150,10 +150,11 @@ jobs: plat: - "aarch64-linux" - "arm-linux" - - "arm64-darwin" + - "arm64-darwin" # github actions does not support this runtime as of 2022-12, but let's build anyway - "x64-mingw-ucrt" - "x64-mingw32" - "x86-linux" + - "x86-mingw32" # github actions does not support this runtime as of 2022-12, but let's build anyway - "x86_64-darwin" - "x86_64-linux" runs-on: ubuntu-latest