mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
parent
7e39a80b18
commit
abd5fd199c
1 changed files with 9 additions and 3 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -959,7 +959,7 @@ jobs:
|
||||||
./uv pip install anyio
|
./uv pip install anyio
|
||||||
|
|
||||||
integration-test-deadsnakes-39-linux:
|
integration-test-deadsnakes-39-linux:
|
||||||
timeout-minutes: 5
|
timeout-minutes: 15
|
||||||
needs: build-binary-linux-libc
|
needs: build-binary-linux-libc
|
||||||
name: "integration test | deadsnakes python3.9 on ubuntu"
|
name: "integration test | deadsnakes python3.9 on ubuntu"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -1007,14 +1007,20 @@ jobs:
|
||||||
./uv pip install -v anyio
|
./uv pip install -v anyio
|
||||||
|
|
||||||
integration-test-free-threaded-linux:
|
integration-test-free-threaded-linux:
|
||||||
timeout-minutes: 5
|
timeout-minutes: 15
|
||||||
needs: build-binary-linux-libc
|
needs: build-binary-linux-libc
|
||||||
name: "integration test | free-threaded on linux"
|
name: "integration test | free-threaded on linux"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Install python3.13-nogil"
|
- name: "Install python3.13-nogil"
|
||||||
run: |
|
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 update
|
||||||
sudo apt-get install python3.13-nogil
|
sudo apt-get install python3.13-nogil
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue