Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 76e1ba5

Browse files
committed
try build wppm again
1 parent b31af29 commit 76e1ba5

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/build_wppm.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: build_wppm
2-
# 2025-08-16: from TornadoWeb simple example
2+
# 2025-08-16: from TornadoWeb simple example, and full bash
33
# object:
44
# - learn the matrix method
55
# - be compatible with cibuilds later
6+
# - copy the methods the most widly used
67
#
78
# using a predefined hashed wheel environnment: pylock.wppmbuild.toml
89
# pip freeze>test.txt
@@ -16,7 +17,7 @@ permissions: {}
1617

1718
env:
1819
python-version: '3.13'
19-
WINPYrequirements: 'winpython/portable/cycle_2025_04/requir.wppmbuild.toml'
20+
WINPYrequirements: './winpython/portable/cycle_2025_04/requir.wppmbuild.toml'
2021

2122
jobs:
2223
build_wheels:
@@ -38,9 +39,9 @@ jobs:
3839
python-version: ${{ env.python-version }}
3940

4041
- name: Install dependencies to build
41-
shell: pwsh
42+
shell: bash
4243
run: |
43-
python -m pip install --no-deps --no-index --require-hashes -r $env:WINPYrequirements
44+
python -m pip install --no-deps --no-index --require-hashes -r ${{ env.WINPYrequirements }}
4445
4546
- name: Build sdist
4647
shell: bash
@@ -55,16 +56,16 @@ jobs:
5556
cp dist/*.whl wheelhouse
5657
5758
- name: generate hashes wppm style
58-
shell: pwsh
59+
shell: bash
5960
run: |
60-
$destfile = "wheelhouse\hashes.md"
61-
python -c "import sys;from winpython import hash; hash.print_hashes(sys.argv[1:])" wheelhouse\*.whl | | Out-File -FilePath $destfile -Encoding utf8
61+
DESTFILE = "./wheelhouse/hashes.md"
62+
python -c "import sys;from winpython import hash; hash.print_hashes(sys.argv[1:])" wheelhouse/*.whl > $DESTFILE
6263
6364
6465
- name: List wheelhouse contents (for debugging)
65-
shell: pwsh
66+
shell: bash
6667
run: |
67-
Get-ChildItem wheelhouse
68+
ls -1 wheelhouse
6869
6970
- uses: actions/upload-artifact@v4
7071
with:

0 commit comments

Comments
 (0)