forked from servo/servo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
81 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Setup Python and UV | ||
runs: | ||
using: "composite" | ||
steps: | ||
# Use the setup-python action to take advantage of the cache. uv will symlink | ||
# to this version | ||
- name: Setup system python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: '.python-version' | ||
- name: Install uv | ||
uses: astral-sh/setup-uv@v4 | ||
with: | ||
version: "0.5.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,8 +59,8 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Install crown | ||
run: cargo install --path support/crown | ||
- name: Bootstrap Python | ||
run: python3 -m pip install --upgrade pip virtualenv | ||
- name: Setup Python | ||
uses: ./.github/actions/setup-python | ||
- name: Bootstrap dependencies | ||
run: sudo apt update && python3 ./mach bootstrap --skip-lints | ||
- name: Set up JDK 17 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,8 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Set LIBCLANG_PATH env # needed for bindgen in mozangle | ||
run: echo "LIBCLANG_PATH=/usr/lib/llvm-14/lib" >> $GITHUB_ENV | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- name: Setup Python | ||
uses: ./.github/actions/setup-python | ||
- name: Install taplo | ||
uses: baptiste0928/cargo-install@v3 | ||
with: | ||
|
@@ -46,8 +45,6 @@ jobs: | |
locked: true | ||
# 0.16.2 requires Rust 1.81 or newer. | ||
version: '0.16.1' | ||
- name: Bootstrap Python | ||
run: python3 -m pip install --upgrade pip | ||
- name: Bootstrap dependencies | ||
run: | | ||
sudo apt update | ||
|
@@ -57,4 +54,4 @@ jobs: | |
run: | | ||
python3 ./mach clippy --use-crown --locked -- -- --deny warnings | ||
- name: Tidy | ||
run: python3 ./mach test-tidy --no-progress --all | ||
run: python3 ./mach test-tidy --no-progress --all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,18 +77,14 @@ jobs: | |
if: github.event_name == 'pull_request_target' | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
# Python 3.13 breaks wptrunner, so pin the version until | ||
# web-platform-tests/wpt#48585 is fixed. | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
- name: Setup Python | ||
uses: ./.github/actions/setup-python | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Install crown | ||
run: cargo install --path support/crown | ||
- name: Bootstrap | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 ./mach bootstrap --skip-lints | ||
brew install gnu-tar | ||
- name: Build (${{ inputs.profile }}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,8 +53,8 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
- name: Install crown | ||
run: cargo install --path support/crown | ||
- name: Bootstrap Python | ||
run: python3 -m pip install --upgrade pip virtualenv | ||
- name: Setup Python | ||
uses: ./.github/actions/setup-python | ||
- name: Bootstrap dependencies | ||
run: sudo apt update && python3 ./mach bootstrap --skip-lints | ||
- name: Setup OpenHarmony SDK | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.12.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters