We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47a4fe commit 3e47ee7Copy full SHA for 3e47ee7
2 files changed
.github/workflows/reusable-windows-msi.yml
@@ -32,5 +32,5 @@ jobs:
32
persist-credentials: false
33
- name: Build CPython installer
34
shell: powershell
35
- run: ./Tools/msi/build.bat --doc -${env:ARCH}
+ run: ./Tools/msi/build.bat --doc -"${env:ARCH}"
36
.github/workflows/reusable-windows.yml
@@ -40,15 +40,15 @@ jobs:
40
run: >-
41
.\\PCbuild\\build.bat
42
-e -d -v
43
- -p ${env:ARCH}
+ -p "${env:ARCH}"
44
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
45
46
- name: Display build info
47
run: .\\python.bat -m test.pythoninfo
48
- name: Tests
49
50
.\\PCbuild\\rt.bat
51
52
-d -q --fast-ci
53
54
0 commit comments