Skip to content

Commit eb5241f

Browse files
authored
use timeouts and retries with curl in wheel builder (#12443)
* use timeouts and retries with curl in wheel builder * Update wheel-builder.yml
1 parent 4aa852e commit eb5241f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/wheel-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
sparse-checkout-cone-mode: false
208208
- name: Setup python
209209
run: |
210-
curl "$PYTHON_DOWNLOAD_URL" -o python.pkg
210+
curl --max-time 30 --retry 5 "$PYTHON_DOWNLOAD_URL" -o python.pkg
211211
sudo installer -pkg python.pkg -target /
212212
env:
213213
PYTHON_DOWNLOAD_URL: ${{ matrix.PYTHON.DOWNLOAD_URL }}

0 commit comments

Comments
 (0)