Skip to content

Commit dae6630

Browse files
committed
chore: drop x86 Windows build
1 parent e83850c commit dae6630

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/setup.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,32 +35,24 @@ jobs:
3535
- "3.12"
3636
- "3.13"
3737
- "3.14"
38-
architecture: [x64, x86]
3938

4039
steps:
4140
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4241
- name: Setup Python
4342
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
4443
with:
4544
python-version: ${{ matrix.python-version }}
46-
architecture: ${{ matrix.architecture }}
4745
- name: Install Gammu x64
48-
if: ${{ matrix.architecture == 'x64' }}
4946
run: |
5047
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://dl.cihar.com/gammu/releases/windows/Gammu-1.41.0-Windows-64bit.exe
5148
./gammu-setup.exe /S /D=C:/Gammu
52-
- name: Install Gammu x86
53-
if: ${{ matrix.architecture == 'x86' }}
54-
run: |
55-
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://dl.cihar.com/gammu/releases/windows/Gammu-1.41.0-Windows.exe
56-
./gammu-setup.exe /S /D=C:/Gammu
5749
- uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
5850
- name: build
5951
run: uv build --wheel
6052
- name: Store the binary wheel
6153
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
6254
with:
63-
name: dist-windows-${{ matrix.python-version }}-${{ matrix.architecture }}
55+
name: dist-windows-${{ matrix.python-version }}
6456
path: dist
6557

6658
check:

0 commit comments

Comments
 (0)