Skip to content

Commit 85c4f4a

Browse files
committed
Peach build #21 : windows worker in pwsh by default
1 parent a8c3783 commit 85c4f4a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@ jobs:
3030
3131
- name: Download python-3 standalone
3232
shell: bash
33+
env:
34+
WINPYVERSION: ${{ env.WINPYVERSION }}
35+
python_source: ${{ env.python_source }}
36+
python_sha256: ${{ env.python_sha256 }}
3337
run: |
34-
curl -L -o python-$WINPYVERSION-embed.tar.gz $python_source
38+
curl.exe -L -o "python-$WINPYVERSION-embed.tar.gz $python_source
3539
# Calculate SHA256 hash
3640
actual_hash=$(sha256sum python-$WINPYVERSION-embed.tar.gz | cut -d' ' -f1)
3741
@@ -45,6 +49,9 @@ jobs:
4549
fi
4650
4751
- name: Extract python-$WINPYVERSION-embed.tar.gz to dotpython
52+
shell: bash
53+
env:
54+
WINPYVERSION: ${{ env.WINPYVERSION }}
4855
run: |
4956
mkdir dotpython
5057
tar -xf python-$WINPYVERSION-embed.tar.gz -C dotpython
@@ -56,7 +63,7 @@ jobs:
5663

5764
- name: Copy launchers_final files to dotpython
5865
# enriching things: dotpython can be used as the building python
59-
#shell: pwsh
66+
shell: bash
6067
run: |
6168
# would run with shell: bash
6269
cp -r winpython/portable/launchers_final/* dotpython/

0 commit comments

Comments
 (0)