Skip to content

Commit 1787268

Browse files
committed
Don't use x86 arch on ubuntu.
1 parent 706d76e commit 1787268

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/desktop.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,14 @@ jobs:
170170

171171
- name: Setup python
172172
uses: actions/setup-python@v4
173+
if: startsWith(matrix.os, 'ubuntu')
174+
with:
175+
python-version: ${{ matrix.python_version }}
176+
architecture: x64
177+
178+
- name: Setup python (Mac)
179+
uses: actions/setup-python@v4
180+
if: startsWith(matrix.os, 'macos')
173181
with:
174182
python-version: ${{ matrix.python_version }}
175183
architecture: ${{ matrix.architecture }}

0 commit comments

Comments
 (0)