forked from winpython/winpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_workflows_build-all_3.14.yml
More file actions
221 lines (189 loc) · 9.94 KB
/
github_workflows_build-all_3.14.yml
File metadata and controls
221 lines (189 loc) · 9.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
name: Build WinPython Distribution for 3.14
# matrix allows to avoid duplicated code in github_workflows_build-dot, github_workflows_build-whl, github_workflows_build-slim
# 2025-08-23a: merged code proposed per Gemini 2.5 flash, it corrected also PYTHONIOENCODING="utf-8" error
# 2025-08-23b: moved manually to Python-3.14.0rc2
# 2025-08-25a: will use manual uploaded free-threading, as astral doesn't provide
on:
workflow_dispatch:
jobs:
build-winpython:
runs-on: windows-latest
strategy:
fail-fast: true # Allows other matrix jobs to complete even if one fails
matrix:
# Define different WinPython build configurations
flavor_config:
# WinPython Dot configuration
- FLAVOR: "dotc"
REQUIREMENTS: "winpython\\portable\\cycle_2025_04\\requir.64-3_14_0_1dotrc2.txt"
REQUIREMENTS_WHL: ""
ZIP: "1"
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" >> $GITHUB_ENV
PYTHON_SHA256F: "361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed"
- FLAVOR: "freec"
REQUIREMENTS: "winpython\\portable\\cycle_2025_04\\requir.64-3_14_0_1dotrc2.txt"
REQUIREMENTS_WHL: ""
ZIP: "1"
SEVEN_Z: "0"
EXE: "1"
ARTIFACT_NAME: "publish_dotc"
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:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set static variables and Python version
shell: bash
run: |
echo "WINPYARCH=64" >> $GITHUB_ENV
echo "WINPYVERSION=314" >> $GITHUB_ENV
#3.14.0 as the base for now
# Gemini says: can update this section to dynamically select Python versions based on matrix if needed.
echo "python_source=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" >> $GITHUB_ENV
echo "python_sha256=361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed" >> $GITHUB_ENV
echo "build_location=WPy64-31401rc2" >> $GITHUB_ENV
echo "WINPYVER=3.14.0.1${{ matrix.flavor_config.FLAVOR }}b3" >> $GITHUB_ENV
echo "WINPYVER2=3.14.0.1" >> $GITHUB_ENV
# Set matrix-specific variables
echo "WINPYFLAVOR=${{ matrix.flavor_config.FLAVOR }}" >> $GITHUB_ENV
echo "WINPYrequirements=${{ matrix.flavor_config.REQUIREMENTS }}" >> $GITHUB_ENV
echo "WINPYrequirementswhl=${{ matrix.flavor_config.REQUIREMENTS_WHL }}" >> $GITHUB_ENV
echo "WINPYZIP=${{ matrix.flavor_config.ZIP }}" >> $GITHUB_ENV
echo "WINPY7Z=${{ matrix.flavor_config.SEVEN_Z }}" >> $GITHUB_ENV
echo "WINPYEXE=${{ matrix.flavor_config.EXE }}" >> $GITHUB_ENV
- name: See variables
shell: pwsh
run: |
Write-Output "WINPYVERSION is $env:WINPYVERSION"
Write-Output "WINPYFLAVOR is $env:WINPYFLAVOR"
Write-Output "python_sourcef is $env:python_sourcef"
Write-Output "python_sha256f is $env:python_sha256f"
Write-Output "WINPYrequirements is $env:WINPYrequirements"
Write-Output "WINPYrequirementswhl is $env:WINPYrequirementswhl"
Write-Output "WINPYZIP is $env:WINPYZIP"
Write-Output "WINPY7Z is $env:WINPY7Z"
Write-Output "WINPYEXE is $env:WINPYEXE"
Write-Output "build_location is $env:build_location"
Write-Output "WINPYVER is $env:WINPYVER"
Write-Output "WINPYVER2 is $env:WINPYVER2"
- name: Download python-3 standalone
shell: pwsh
run: |
curl.exe -L -o "python-3-embed.tar.gz" $env:python_sourcef
# Calculate SHA256 hash
$filePath = "python-3-embed.tar.gz"
$expectedHash = $env:python_sha256f
$hashObject = Get-FileHash -Path $filePath -Algorithm SHA256
$actualHash = $hashObject.Hash.ToLower()
if ($actualHash -eq $expectedHash.ToLower()) {
Write-Output "Hash matches."
} else {
Write-Output "Hash does NOT match."
Write-Output "Actual: $actualHash"
Write-Output "Expected: $expectedHash"
exit 1
}
- name: Extract python-3-embed.tar.gz to dotpython
shell: bash
run: |
mkdir dotpython
tar -xf python-3-embed.tar.gz -C dotpython
- name: Copy launchers_final files to dotpython
shell: bash
run: |
cp -r winpython/portable/launchers_final/* dotpython/
mkdir "dotpython\wheelhouse"
- name: List dotpython contents (for debugging)
shell: pwsh
run: |
Get-ChildItem dotpython
- name: Prepare WinPython target structure
shell: pwsh
run: |
New-Item -ItemType Directory -Path $env:build_location
Get-ChildItem -Path dotpython -Force | Move-Item -Destination $env:build_location -Force
- name: Upgrade pip and patch launchers
shell: pwsh
run: |
& "$env:build_location\python\python.exe" -m pip install --upgrade pip
& "$env:build_location\python\python.exe" -m pip install --upgrade packaging==25.0
& "$env:build_location\python\python.exe" -c "from wppm import wppm;dist=wppm.Distribution();dist.patch_standard_packages('pip', to_movable=True)"
- name: Write env.ini file
shell: pwsh
run: |
$destDir = "$env:build_location\python\scripts"
echo "WINPYthon_exe=$env:WINPYthon_exe" > env.ini
echo "WINPYthon_subdirectory_name=$env:WINPYthon_subdirectory_name" >> env.ini
echo "WINPYVER=$env:WINPYVER" >> env.ini
echo "WINPYVER2=$env:WINPYVER2" >> env.ini
echo "WINPYFLAVOR=$env:WINPYFLAVOR" >> env.ini
echo "WINPYARCH=$env:WINPYARCH" >> env.ini
Copy-Item -Path "env.ini" -Destination "$destDir\env.ini"
- name: Download main requirements to wheelhouse
shell: pwsh
run: |
& "$env:build_location\python\python.exe" -m pip download --dest dotpython\wheelhouse --no-deps --require-hashes -r $env:WINPYrequirements
- name: Download additional wheelhouse requirements
shell: pwsh
run: |
$destwheelhouse="$env:build_location\wheelhouse"
if ($env:WINPYrequirementswhl -eq "") {
Write-Output "No additional wheelhouse requirements."
} else {
& "$env:build_location\python\python.exe" -m pip download --dest $destwheelhouse --no-deps --require-hashes -r $env:WINPYrequirementswhl
}
- name: Install requirements
shell: pwsh
run: |
& "$env:build_location\python\python.exe" -m pip install --no-deps --no-index --trusted-host=None --find-links=dotpython\wheelhouse --require-hashes -r $env:WINPYrequirements
- name: Generate Markdown content and pylock file
shell: pwsh
run: |
mkdir publish_output
# Ensure unicode for wppm output
$env:PYTHONIOENCODING="utf-8"
$destfile_md = "publish_output\WinPython$env:WINPYFLAVOR-$($env:WINPYARCH)bit-$env:WINPYVER2.md"
& "$env:build_location\python\python.exe" -m wppm -md | Out-File -FilePath $destfile_md -Encoding utf8
& "$env:build_location\python\python.exe" -m pip freeze | Out-File -FilePath dotpython\freeze.txt
$destfile_pylock = "publish_output\pylock.$env:WINPYARCH-$($env:WINPYVER -replace '\.', '_').toml"
& "$env:build_location\python\python.exe" -m pip lock --no-deps --find-links=dotpython\wheelhouse -r dotpython\freeze.txt -o $destfile_pylock
$outreq = "publish_output\requir.$env:WINPYARCH-$($env:WINPYVER -replace '\.', '_').txt"
& "$env:build_location\python\python.exe" -X utf8 -c "from wppm import wheelhouse as wh; wh.pylock_to_req(r'$destfile_pylock', r'$outreq')"
- name: Zip the result
shell: pwsh
if: ${{ matrix.flavor_config.ZIP == '1' }}
run: |
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
- name: 7z archive the result
shell: pwsh
if: ${{ matrix.flavor_config.SEVEN_Z == '1' }}
run: |
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
$sourceDir = "$env:build_location"
7z a $destfile7z $sourceDir
- name: 7z executable archive the result
shell: pwsh
if: ${{ matrix.flavor_config.EXE == '1' }}
run: |
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.exe"
$sourceDir = "$env:build_location"
7z a -sfx $destfile7z $sourceDir
- name: generate hashes wppm style
shell: pwsh
run: |
$DESTFILE="./publish_output/hashes.md"
Get-ChildItem -Path ".\publish_output\*.*"
# Get the list of files matching the pattern and pass them as arguments
$filesToHash = Get-ChildItem -Path ".\publish_output\*64*.*"
& "$env:build_location\python\python.exe" -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" @($filesToHash.FullName) | Out-File -FilePath $DESTFILE
gc $DESTFILE
- name: Upload WinPython folder as artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.flavor_config.ARTIFACT_NAME }}
path: publish_output
retention-days: 66 # keeps artifact for 66 days