mirror of
https://github.com/astral-sh/uv.git
synced 2025-12-23 09:19:48 +00:00
Avoid stack overflows on more windows tests (#3344)
Fix windows CI by increasing the debug stack size on windows: *2455300039*2455094999*2455094926*2455081040
This commit is contained in:
parent
7772e6249f
commit
714adebbd7
1 changed files with 6 additions and 0 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -164,6 +164,9 @@ jobs:
|
|||
cargo nextest run --no-default-features --features python,pypi,git --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow
|
||||
|
||||
- name: "Smoke test"
|
||||
env:
|
||||
# Avoid debug build stack overflows.
|
||||
UV_STACK_SIZE: 2000000 # 2 megabyte, double the default on windows
|
||||
run: |
|
||||
Set-Alias -Name uv -Value ./target/debug/uv
|
||||
uv venv
|
||||
|
|
@ -815,6 +818,9 @@ jobs:
|
|||
|
||||
- name: "Validate global Python install"
|
||||
shell: bash -el {0}
|
||||
env:
|
||||
# Avoid debug build stack overflows.
|
||||
UV_STACK_SIZE: 2000000 # 2 megabyte, double the default on windows
|
||||
run: python ./scripts/check_system_python.py --uv ./uv
|
||||
|
||||
system-test-amazonlinux:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue