Skip to content

Commit 8cba103

Browse files
authored
Merge pull request winpython#1893 from stonebig/master
fix defect
2 parents aac6e0f + 7c1e01f commit 8cba103

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/github_workflows_build-2025_05.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ jobs:
169169
PYTHON_VERSION="${{ github.event.inputs.python_version }}"
170170
FLAVOR="${{ matrix.flavor.name }}"
171171
WINPYARCH="${{ matrix.flavor.WINPYARCH }}"
172+
WINPYARCHDET="${{ matrix.flavor.WINPYARCHDET }}"
172173
173174
# Populate generic per-flavor / per-version selections
174175
if [ "$PYTHON_VERSION" = "3.13" ]; then
@@ -189,7 +190,8 @@ jobs:
189190
echo "build_location=${{ matrix.flavor.build_location_314 }}" >> $GITHUB_ENV
190191
echo "destwheelhouse=${{ matrix.flavor.build_location_314 }}\\wheelhouse\\included.wheels" >> $GITHUB_ENV
191192
echo "WINPYVER=${{ matrix.flavor.WINPYVER2_314 }}${{ matrix.flavor.name }}${{ matrix.flavor.my_release_level }}" >> $GITHUB_ENV
192-
elif [ "$PYTHON_VERSION" = "3.15" ]; then echo "WINPYrequirements=${{ matrix.flavor.REQUIREMENTS_315 }}" >> $GITHUB_ENV
193+
elif [ "$PYTHON_VERSION" = "3.15" ]; then
194+
echo "WINPYrequirements=${{ matrix.flavor.REQUIREMENTS_315 }}" >> $GITHUB_ENV
193195
echo "WINPYrequirementswhl=${{ matrix.flavor.REQUIREMENTS_WHL_315 }}" >> $GITHUB_ENV
194196
echo "ARTIFACT_NAME=${{ matrix.flavor.ARTIFACT_NAME_315 }}" >> $GITHUB_ENV
195197
echo "WINPYVERSION=${{ matrix.flavor.WINPYVERSION_315 }}" >> $GITHUB_ENV
@@ -230,7 +232,7 @@ jobs:
230232
231233
# 3.14 X64 (free-threading)
232234
# SHA not provided here: fill the correct SHA for security, otherwise the workflow will skip SHA check.
233-
if [ "$PYTHON_VERSION" = "3.14" ] && [ "$WINPYARCH" = "64F" ]; then
235+
if [ "$PYTHON_VERSION" = "3.14" ] && [ "$WINPYARCHDET" = "64F" ]; then
234236
echo "python_source=https://github.com/astral-sh/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst" >> $GITHUB_ENV
235237
echo "python_sha256=b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0"
236238
fi

0 commit comments

Comments
 (0)