mirror of https://github.com/astral-sh/uv
Increase deadsnake timeout to 15min (#13661)
https://github.com/astral-sh/uv/actions/runs/15254949524/job/42900366590
This commit is contained in:
parent
7e39a80b18
commit
abd5fd199c
|
|
@ -959,7 +959,7 @@ jobs:
|
|||
./uv pip install anyio
|
||||
|
||||
integration-test-deadsnakes-39-linux:
|
||||
timeout-minutes: 5
|
||||
timeout-minutes: 15
|
||||
needs: build-binary-linux-libc
|
||||
name: "integration test | deadsnakes python3.9 on ubuntu"
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -1007,14 +1007,20 @@ jobs:
|
|||
./uv pip install -v anyio
|
||||
|
||||
integration-test-free-threaded-linux:
|
||||
timeout-minutes: 5
|
||||
timeout-minutes: 15
|
||||
needs: build-binary-linux-libc
|
||||
name: "integration test | free-threaded on linux"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Install python3.13-nogil"
|
||||
run: |
|
||||
sudo add-apt-repository ppa:deadsnakes
|
||||
for i in {1..5}; do
|
||||
sudo add-apt-repository ppa:deadsnakes && break || { echo "Attempt $i failed, retrying in 10 seconds..."; sleep 10; }
|
||||
if [ $i -eq 5 ]; then
|
||||
echo "Failed to add repository after 5 attempts"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
sudo apt-get update
|
||||
sudo apt-get install python3.13-nogil
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue