Skip to content

Commit

Permalink
Merge branch 'main' into charlie/venv-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh authored Mar 5, 2024
2 parents 8b2bf50 + 7e1f361 commit b58858e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/system-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,33 @@ jobs:
- name: "Create virtual environment"
run: ./target/debug/uv venv

install-pypy:
name: "Install PyPy on Ubuntu"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: 'pypy3.9'

- name: "Install Rust toolchain"
run: rustup show

- uses: Swatinem/rust-cache@v2

- name: "Build"
run: cargo build

- name: "Print Python path"
run: echo $(which pypy)

- name: "Validate global Python install"
run: pypy scripts/check_system_python.py --uv ./target/debug/uv

- name: "Create virtual environment"
run: ./target/debug/uv venv

install-macos:
name: "Install Python on macOS"
runs-on: macos-14
Expand Down

0 comments on commit b58858e

Please sign in to comment.