Skip to content

Commit 9a54628

Browse files
authored
Update prepare-ci.sh to use uv
1 parent 49f0909 commit 9a54628

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/prepare-ci.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
88
brew install ninja || true
99
brew install ccache || true
1010
brew install 7zip || true
11-
python3 -m pip install uv
11+
brew install uv || true
1212
uv venv
1313
uv pip install future pyelftools
1414
else
1515
echo "Linux detected. Install dependencies..."
1616
sudo apt update && sudo apt install -y gperf cmake ninja-build ccache p7zip-full
17-
pip3 install wheel future pyelftools
17+
curl -LsSf https://astral.sh/uv/install.sh | sh
18+
uv venv
19+
uv pip install future pyelftools
1820
fi

0 commit comments

Comments
 (0)