ci: switch to uv in setup.sh

This commit is contained in:
daywalker90 2025-08-18 12:09:45 +02:00
parent 0a9eb7cd82
commit 675e625dcd
No known key found for this signature in database
2 changed files with 2 additions and 25 deletions

View file

@ -112,14 +112,13 @@ jobs:
- name: Get plugin binary
run: |
source venv/bin/activate
if ${{ inputs.tagged-release }}; then
cd tests
./setup.sh
cd ..
else
if [ -d "proto" ]; then
python -m grpc_tools.protoc --proto_path="proto" --python_out="tests" --grpc_python_out="tests" proto/*.proto
uv run python -m grpc_tools.protoc --proto_path="proto" --python_out="tests" --grpc_python_out="tests" proto/*.proto
fi
cargo build