Skip to content

Commit

Permalink
add win7-x32 support
Browse files Browse the repository at this point in the history
  • Loading branch information
baskiton committed Jul 27, 2024
1 parent 77a3134 commit e3a040c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e3a040c

Please sign in to comment.