Skip to content

Commit b1c9f21

Browse files
authored
Use uv UV_NO_PROGRESS option when building on arch (#1761)
1 parent 961285d commit b1c9f21

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,11 +620,13 @@ jobs:
620620
apk update
621621
apk add python3 py3-pip git curl
622622
fi
623+
env: |
624+
UV_NO_PROGRESS: '1'
623625
run: |
624626
set -x
625627
curl -LsSf https://astral.sh/uv/install.sh | sh
626628
source $HOME/.local/bin/env
627-
uv sync --frozen --group testing --no-install-project --no-progress
629+
uv sync --frozen --group testing --no-install-project
628630
uv pip install pydantic-core --no-index --no-deps --find-links dist --force-reinstall
629631
uv run --no-sync pytest --ignore=tests/test_docstrings.py
630632
uv run --no-sync python -c 'import pydantic_core._pydantic_core; print(pydantic_core._pydantic_core.__version__)'

0 commit comments

Comments
 (0)