Skip to content

Commit

Permalink
Merge pull request #43 from mukilan/add-uv-install-step
Browse files Browse the repository at this point in the history
add uv install step to run-wpt worflow
  • Loading branch information
mukilan authored Dec 17, 2024
2 parents 7aa2f20 + 9148a46 commit eff4c5a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,14 @@ jobs:
with:
repository: servo/servo
path: servo
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12' # Make sure this is the same as .python-version in servo repo
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Prep test environment
run: |
python3 -m pip install --upgrade pip virtualenv
sudo apt update
sudo apt install -qy --no-install-recommends mesa-vulkan-drivers
- name: Download latest nightly
Expand All @@ -48,7 +53,7 @@ jobs:
working-directory: servo
- name: Run tests
run: |
python3 ./mach test-wpt \
./mach test-wpt \
--release ${WPT_LAYOUT_FLAG} \
--log-wptreport=wpt-report-${{ matrix.chunk_id }}.json \
--processes $(nproc) --timeout-multiplier 2 \
Expand Down

0 comments on commit eff4c5a

Please sign in to comment.