Skip to content

Commit 43e48cf

Browse files
committed
[ci] use uv to manage Python and pip dependencies
The GitHub-provided setup-python action does not create portable binaries and can cause failure for bitstream cache. Instead, ask uv to manage our dependencies. Signed-off-by: Gary Guo <[email protected]>
1 parent 7d3d80a commit 43e48cf

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

.github/actions/install-deps/action.yml

+19-5
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,29 @@ runs:
3232
grep '^[^#]' apt-requirements.txt | xargs sudo apt install -y
3333
shell: bash
3434

35-
- uses: actions/setup-python@v5
35+
- uses: astral-sh/setup-uv@v3
3636
with:
37-
python-version: '3.8'
38-
cache-dependency-path: python-requirements.txt
39-
cache: pip
37+
version: '0.4.20'
38+
enable-cache: true
39+
cache-dependency-glob: |
40+
pyproject.toml
41+
python-requirements.txt
42+
43+
- name: Install Python
44+
shell: bash
45+
run: |
46+
uv python install 3.8
47+
# Create a virtual environment for UV
48+
uv venv ~/.local/share/venv
49+
echo "$HOME/.local/share/venv/bin" >> "$GITHUB_PATH"
50+
echo "VIRTUAL_ENV=$HOME/.local/share/venv" >> "$GITHUB_ENV"
4051
4152
- name: Install Python dependencies
42-
run: python3 -m pip install -r python-requirements.txt --require-hashes
4353
shell: bash
54+
run: |
55+
uv pip install -r python-requirements.txt --require-hashes
56+
# We installed uv from setup-uv action, so uninstall from venv to prevent conflict
57+
uv pip uninstall uv
4458
4559
- name: Install Verilator
4660
run: |

0 commit comments

Comments
 (0)