Skip to content

Commit 9e99dc8

Browse files
authored
CI: Add timeout and retry when installing the python deps (#1210)
1 parent 8c3e484 commit 9e99dc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/aiter-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
docker exec \
8787
-w /workspace \
8888
aiter_build_${{ matrix.python_version }} \
89-
pip install -r requirements.txt
89+
pip install --timeout=60 --retries=10 -r requirements.txt
9090
9191
- name: Install ninja
9292
if: ${{ matrix.build_enabled }}
@@ -96,7 +96,7 @@ jobs:
9696
docker exec \
9797
-w /workspace \
9898
aiter_build_${{ matrix.python_version }} \
99-
pip install ninja
99+
pip install --timeout=60 --retries=10 ninja
100100
101101
- name: Build Aiter
102102
if: ${{ matrix.build_enabled }}

0 commit comments

Comments
 (0)