Skip to content
Merged

fix #1816

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
11 changes: 7 additions & 4 deletions .github/workflows/github_workflows_build-all_3.14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
SEVEN_Z: "0"
EXE: "1"
ARTIFACT_NAME: "publish_dotc"
PYTHON_SOURCEF: "https://github.com/astral-sh/python-build-standalone/releases/download/20250818/cpython-3.14.0rc2+20250818-x86_64-pc-windows-msvc-install_only_stripped.tar.gz"
PYTHON_SHA256F: "361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed"
python_sourcef: "https://github.com/astral-sh/python-build-standalone/releases/download/20250818/cpython-3.14.0rc2+20250818-x86_64-pc-windows-msvc-install_only_stripped.tar.gz"
python_sha256f: "361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed"

- FLAVOR: "freec"
REQUIREMENTS: "winpython\\portable\\cycle_2025_04\\requir.64-3_14_0_1dotrc2.txt"
Expand All @@ -33,8 +33,8 @@ jobs:
SEVEN_Z: "0"
EXE: "1"
ARTIFACT_NAME: "publish_freec"
PYTHON_SOURCEF: "https://github.com/winpython/winpy.github.io/releases/download/20250825/cpython-3.14.0rc2+20250825-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz"
PYTHON_SHA256F: "dda491993214ae78948297848aa9d75d1d10762c33ff16487793ca5205516e4a"
python_sourcef: "https://github.com/winpython/winpy.github.io/releases/download/20250825/cpython-3.14.0rc2+20250825-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz"
python_sha256f: "dda491993214ae78948297848aa9d75d1d10762c33ff16487793ca5205516e4a"


steps:
Expand Down Expand Up @@ -70,6 +70,8 @@ jobs:
Write-Output "WINPYFLAVOR is $env:WINPYFLAVOR"
Write-Output "python_sourcef is $env:python_sourcef"
Write-Output "python_sha256f is $env:python_sha256f"
Write-Output "python_source is $env:python_source"
Write-Output "python_sha256 is $env:python_sha256"
Write-Output "WINPYrequirements is $env:WINPYrequirements"
Write-Output "WINPYrequirementswhl is $env:WINPYrequirementswhl"
Write-Output "WINPYZIP is $env:WINPYZIP"
Expand All @@ -82,6 +84,7 @@ jobs:
- name: Download python-3 standalone
shell: pwsh
run: |
Write-Output "python_sourcef used is $env:python_sourcef"
curl.exe -L -o "python-3-embed.tar.gz" $env:python_sourcef
# Calculate SHA256 hash
$filePath = "python-3-embed.tar.gz"
Expand Down