File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 11name : 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
1718env :
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
2122jobs :
2223 build_wheels :
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 :
You can’t perform that action at this time.
0 commit comments