Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ef2fd4

Browse files
committed
fix
1 parent 7180632 commit 1ef2fd4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,14 @@ jobs:
151151
WINPYREQUIREMENTSwhl=""
152152
testreq="${my_cycle}/requir.64-${V_TAG}${FLAVOR_NAME}${my_release_level}.txt"
153153
testwhl="${my_cycle}/requir.64-${V_TAG}${FLAVOR_NAME}_wheels${my_release_level}.txt"
154-
echo "searching $testreq $testwhl"
155-
if [[ -f "$testreq" ]]; then
154+
echo "is $WINPYARCHDET=$detected_arch , search $testreq $testwhl $detected_arch"
155+
if [ "$WINPYARCHDET" = "$detected_arch" ] && [[ -f "$testreq" ]] && ; then
156156
WINPYREQUIREMENTS="$testreq"
157157
echo "Found $WINPYREQUIREMENTS"
158-
fi
159158
if [[ -f "$testwhl" ]]; then
160159
"WINPYREQUIREMENTSwhl=$testwhl"
161160
echo "Found also $WINPYREQUIREMENTSwhl"
161+
fi
162162
fi
163163
echo "WINPYREQUIREMENTS=$WINPYREQUIREMENTS" >> $GITHUB_ENV
164164
echo "WINPYREQUIREMENTSwhl=$WINPYREQUIREMENTSwhl" >> $GITHUB_ENV

0 commit comments

Comments
 (0)