Skip to content

Commit 823c4af

Browse files
committed
Revert a few things
1 parent 08771ca commit 823c4af

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/reusable-windows-msi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
with:
3232
persist-credentials: false
3333
- name: Build CPython installer
34-
run: ./Tools/msi/build.bat --doc -"${env:ARCH}"
35-
shell: powershell
34+
run: ./Tools/msi/build.bat --doc -"${ARCH}"
35+
shell: bash
3636

.github/workflows/reusable-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737
if: inputs.arch != 'Win32'
3838
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
3939
- name: Print PATH
40-
run: echo ${env:PATH}
40+
run: echo "${PATH}"
4141
- name: Build CPython
4242
run: >-
4343
.\\PCbuild\\build.bat
4444
-e -d -v
45-
-p "${env:ARCH}"
45+
-p "${ARCH}"
4646
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
47-
shell: powershell
47+
shell: bash
4848
- name: Display build info
4949
run: .\\python.bat -m test.pythoninfo
5050
- name: Tests
@@ -53,4 +53,4 @@ jobs:
5353
-p "${env:ARCH}"
5454
-d -q --fast-ci
5555
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
56-
shell: powershell
56+
shell: bash

0 commit comments

Comments
 (0)