Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions .github/workflows/github_workflows_build-dot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
- name: List dotpython contents (for debugging)
shell: pwsh
run: |
Get-ChildItem -Recurse dotpython
#Get-ChildItem -Recurse dotpython
Get-ChildItem dotpython

- name: Prepare WinPython target dot structure
shell: pwsh
Expand All @@ -62,27 +63,31 @@ jobs:
run: |
WPy64-31351b3\python\python.exe -m pip install --upgrade pip

- name: try install download requirements as hashed-requirements
- name: try download requirements as hashed-requirements
shell: pwsh
run: |
WPy64-31351b3\python\python.exe -m pip download --dest dotpython\wheelhouse --no-deps --require-hashes -r "winpython\portable\cycle_2025_04\requir.64-3_13_5_1dotb3.txt"
WPy64-31351b3\python\python.exe -m pip install --no-deps --no-index --trusted-host=None --find-links=dotpython\wheelhouse --require-hashes -r "winpython\portable\cycle_2025_04\requir.64-3_13_5_1dotb3.txt"
#WPy64-31351b3\python\python.exe -m pip install --no-deps --no-index --trusted-host=None --find-links=dotpython\wheelhouse --require-hashes -r "winpython\portable\cycle_2025_04\requir.64-3_13_5_1dotb3.txt"

- name: try install requirements as hashed-requirements
shell: pwsh
run: |
WPy64-31351b3\python\python.exe -m pip install --dest dotpython\wheelHouse --no-deps --require-hashes -r "winpython\portable\cycle_2025_04\requir.64-3_13_5_1dotb3.txt"

- name: List dotpython contents (for debugging)
shell: pwsh
run: |
Get-ChildItem -Recurse dotpython\wheelhouse


- name: try install requirements as hashed-requirements
- name: List WPy64-31351cloudb3 contents (for debugging)
shell: pwsh
run: |
WPy64-31351b3\python\python.exe -m pip download --dest dotpython\wheelhouse --no-deps --require-hashes -r "winpython\portable\cycle_2025_04\requir.64-3_13_5_1dotb3.txt"
Get-ChildItem WPy64-31351b3

- name: List WPy64-31351cloudb3 contents (for debugging)
- name: List WPy64-31351cloudb3 Mardowned content (for debugging)
shell: pwsh
run: |
Get-ChildItem -Recurse WPy64-31351b3
WPy64-31351b3\python\python.exe -m wppm -md

#step avoided: upload-artifact will also .zip it (perplexity AI advising)
#- name: Zip the result
Expand Down