We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f0909 commit 9a54628Copy full SHA for 9a54628
tools/prepare-ci.sh
@@ -8,11 +8,13 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
8
brew install ninja || true
9
brew install ccache || true
10
brew install 7zip || true
11
- python3 -m pip install uv
+ brew install uv || true
12
uv venv
13
uv pip install future pyelftools
14
else
15
echo "Linux detected. Install dependencies..."
16
sudo apt update && sudo apt install -y gperf cmake ninja-build ccache p7zip-full
17
- pip3 install wheel future pyelftools
+ curl -LsSf https://astral.sh/uv/install.sh | sh
18
+ uv venv
19
+ uv pip install future pyelftools
20
fi
0 commit comments