From e3a040c8349c38b2241c50d552b66703378363d7 Mon Sep 17 00:00:00 2001 From: baskiton Date: Sun, 28 Jul 2024 00:30:36 +0700 Subject: [PATCH] add win7-x32 support --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41b9390..81a15f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,9 +26,14 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest ] python: [ "3.11" ] + arch: [ "x64" ] include: - os: windows-2019 python: "3.7" + arch: "x64" + - os: windows-2019 + python: "3.7" + arch: "x86" outputs: ver: ${{ steps.build.outputs.ver }} @@ -41,6 +46,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} + architecture: ${{ matrix.arch }} cache: 'pip' cache-dependency-path: | **/requirements*.txt @@ -64,7 +70,7 @@ jobs: mv dist/SatsDecoder dist/SatsDecoder-linux ;; windows-2019) - mv dist/SatsDecoder.exe dist/SatsDecoder-win7.exe + mv dist/SatsDecoder.exe dist/SatsDecoder-win7-${{ matrix.arch }}.exe ;; windows-latest) mv dist/SatsDecoder dist/SatsDecoder-win