mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Support mac wpt builds (#29867)
* Add wpt-mac builds * Fix wpt reporting check run tag * There can only be five concurrent mac runners
This commit is contained in:
parent
c46631a1ce
commit
efa38401c6
5 changed files with 139 additions and 62 deletions
98
.github/workflows/mac-wpt.yml
vendored
Normal file
98
.github/workflows/mac-wpt.yml
vendored
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
---
|
||||||
|
name: Mac WPT Tests
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
layout:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
env:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
SHELL: /bin/bash
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
mac-wpt:
|
||||||
|
name: WPT ${{ inputs.layout }}
|
||||||
|
runs-on: macos-13
|
||||||
|
env:
|
||||||
|
max_chunk_id: 5
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
chunk_id: [1, 2, 3, 4, 5]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
if: github.event_name != 'issue_comment'
|
||||||
|
with:
|
||||||
|
fetch-depth: 2
|
||||||
|
# This is necessary to checkout the pull request if this run was triggered
|
||||||
|
# via an `issue_comment` action on a pull request.
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
if: github.event_name == 'issue_comment'
|
||||||
|
with:
|
||||||
|
ref: refs/pull/${{ github.event.issue.number }}/head
|
||||||
|
fetch-depth: 2
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: release-binary-macos
|
||||||
|
- name: Prep test environment
|
||||||
|
run: |
|
||||||
|
gtar -xzf target.tar.gz
|
||||||
|
python3 -m pip install --upgrade pip virtualenv
|
||||||
|
python3 ./mach bootstrap
|
||||||
|
- name: Smoketest
|
||||||
|
run: python3 ./mach smoketest
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
python3 ./mach test-wpt --with-${{ inputs.layout }} \
|
||||||
|
--release --processes $(sysctl -n hw.logicalcpu) --timeout-multiplier 8 \
|
||||||
|
--total-chunks ${{ env.max_chunk_id }} --this-chunk ${{ matrix.chunk_id }} \
|
||||||
|
--log-raw test-wpt.${{ matrix.chunk_id }}.log \
|
||||||
|
--log-raw-unexpected unexpected-test-wpt.${{ matrix.chunk_id }}.log \
|
||||||
|
--filter-intermittents filtered-test-wpt.${{ matrix.chunk_id }}.json
|
||||||
|
- name: Archive filtered results
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: wpt-filtered-results-mac-${{ inputs.layout }}
|
||||||
|
path: |
|
||||||
|
filtered-test-wpt.${{ matrix.chunk_id }}.json
|
||||||
|
unexpected-test-wpt.${{ matrix.chunk_id }}.log
|
||||||
|
- name: Archive logs
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
name: wpt-logs-mac-${{ inputs.layout }}
|
||||||
|
path: |
|
||||||
|
test-wpt.${{ matrix.chunk_id }}.log
|
||||||
|
filtered-wpt-results.${{ matrix.chunk_id }}.json
|
||||||
|
|
||||||
|
report-test-results:
|
||||||
|
name: Reporting test results
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ always() && !cancelled() }}
|
||||||
|
needs: [ mac-wpt ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 2
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: wpt-filtered-results-mac-${{ inputs.layout }}
|
||||||
|
path: wpt-filtered-results-mac
|
||||||
|
- name: Create aggregated unexpected results
|
||||||
|
run: cat wpt-filtered-results-mac/*.log > unexpected-test-wpt.log
|
||||||
|
- name: Archive aggregate results
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: wpt-filtered-results-mac-${{ inputs.layout }}
|
||||||
|
path: |
|
||||||
|
unexpected-test-wpt.log
|
||||||
|
- name: Comment on PR with results
|
||||||
|
run: etc/ci/report_aggregated_expected_results.py --tag="mac-wpt-${{ inputs.layout }}"
|
||||||
|
wpt-filtered-results-mac/*.json
|
||||||
|
env:
|
||||||
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
RESULTS: ${{ toJson(needs.*.result) }}
|
85
.github/workflows/mac.yml
vendored
85
.github/workflows/mac.yml
vendored
|
@ -3,6 +3,9 @@ name: Mac
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
|
wpt-layout:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
unit-tests:
|
unit-tests:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
@ -16,6 +19,10 @@ on:
|
||||||
type: string
|
type: string
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
wpt-layout:
|
||||||
|
required: false
|
||||||
|
type: choice
|
||||||
|
options: ["none", "2013", "2020", "all"]
|
||||||
unit-tests:
|
unit-tests:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
@ -25,7 +32,7 @@ on:
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
push:
|
push:
|
||||||
branches: ["try-mac"]
|
branches: ["try-mac", "try-wpt-mac", "try-wpt-mac-2020"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
@ -38,7 +45,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: macos-12
|
runs-on: macos-13
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
if: github.event_name != 'issue_comment'
|
if: github.event_name != 'issue_comment'
|
||||||
|
@ -96,68 +103,28 @@ jobs:
|
||||||
NIGHTLY_REPO_TOKEN: ${{ secrets.NIGHTLY_REPO_TOKEN }}
|
NIGHTLY_REPO_TOKEN: ${{ secrets.NIGHTLY_REPO_TOKEN }}
|
||||||
NIGHTLY_REPO: ${{ github.repository_owner }}/servo-nightly-builds
|
NIGHTLY_REPO: ${{ github.repository_owner }}/servo-nightly-builds
|
||||||
- name: Package binary
|
- name: Package binary
|
||||||
run: gtar -czf target.tar.gz target/release/servo target/release/*.dylib resources
|
run: gtar -czf target.tar.gz target/release/servo target/release/*.dylib target/release/lib/*.dylib resources
|
||||||
- name: Archive binary
|
- name: Archive binary
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-binary-macos
|
name: release-binary-macos
|
||||||
path: target.tar.gz
|
path: target.tar.gz
|
||||||
|
|
||||||
# mac-wpt:
|
wpt-2020:
|
||||||
# name: Mac WPT Tests
|
if: ${{ github.ref_name == 'try-wpt-mac-2020' || inputs.wpt-layout == '2020' || inputs.wpt-layout == 'all' }}
|
||||||
# runs-on: macos-12
|
name: Mac WPT Tests 2020
|
||||||
# needs: ["build-mac"]
|
needs: ["build"]
|
||||||
# env:
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
# max_chunk_id: 20
|
with:
|
||||||
# strategy:
|
layout: "layout-2020"
|
||||||
# fail-fast: false
|
|
||||||
# matrix:
|
wpt-2013:
|
||||||
# chunk_id: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
|
if: ${{ github.ref_name == 'try-wpt-mac' || inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
||||||
# steps:
|
name: Mac WPT Tests 2013
|
||||||
# - uses: actions/checkout@v3
|
needs: ["build"]
|
||||||
# if: github.event_name != 'issue_comment'
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
# with:
|
with:
|
||||||
# fetch-depth: 2
|
layout: "layout-2013"
|
||||||
# # This is necessary to checkout the pull request if this run was triggered
|
|
||||||
# # via an `issue_comment` action on a pull request.
|
|
||||||
# - uses: actions/checkout@v3
|
|
||||||
# if: github.event_name == 'issue_comment'
|
|
||||||
# with:
|
|
||||||
# ref: refs/pull/${{ github.event.issue.number }}/head
|
|
||||||
# fetch-depth: 2
|
|
||||||
# - uses: actions/download-artifact@v3
|
|
||||||
# with:
|
|
||||||
# name: release-binary-macos
|
|
||||||
# # TODO: Remove this step when the compatibility issue between mozjs and
|
|
||||||
# # Homebrew's Python 3.10 formula (servo/rust-mozjs#559) is fixed
|
|
||||||
# - name: Select Python 3.9
|
|
||||||
# run: |
|
|
||||||
# brew install python@3.9
|
|
||||||
# cd $(dirname $(which python3.9))
|
|
||||||
# rm -f python3 pip3
|
|
||||||
# ln -s python3.9 python3
|
|
||||||
# ln -s pip3.9 pip3
|
|
||||||
# - name: Prep test environment
|
|
||||||
# run: |
|
|
||||||
# gtar -xzf target.tar.gz
|
|
||||||
# python3 -m pip install --upgrade pip virtualenv
|
|
||||||
# - name: Smoketest
|
|
||||||
# run: python3 ./mach smoketest
|
|
||||||
# - name: Run tests
|
|
||||||
# run: |
|
|
||||||
# python3 ./mach test-wpt \
|
|
||||||
# --release --processes $(sysctl -n hw.logicalcpu) --timeout-multiplier 8 \
|
|
||||||
# --total-chunks ${{ env.max_chunk_id }} --this-chunk ${{ matrix.chunk_id }} \
|
|
||||||
# --log-raw test-wpt.${{ matrix.chunk_id }}.log \
|
|
||||||
# --filter-intermittents=filtered-wpt-summary.${{ matrix.chunk_id }}.log
|
|
||||||
# - name: Archive logs
|
|
||||||
# uses: actions/upload-artifact@v3
|
|
||||||
# if: ${{ failure() }}
|
|
||||||
# with:
|
|
||||||
# name: wpt${{ matrix.chunk_id }}-logs-macos
|
|
||||||
# path: |
|
|
||||||
# test-wpt.${{ matrix.chunk_id }}.log
|
|
||||||
# filtered-wpt-summary.${{ matrix.chunk_id }}.log
|
|
||||||
|
|
||||||
result:
|
result:
|
||||||
name: Result
|
name: Result
|
||||||
|
@ -166,6 +133,8 @@ jobs:
|
||||||
# needs all build to detect cancellation
|
# needs all build to detect cancellation
|
||||||
needs:
|
needs:
|
||||||
- "build"
|
- "build"
|
||||||
|
- "wpt-2020"
|
||||||
|
- "wpt-2013"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Mark the job as successful
|
- name: Mark the job as successful
|
||||||
|
|
4
.github/workflows/quick-check.yml
vendored
4
.github/workflows/quick-check.yml
vendored
|
@ -4,8 +4,8 @@
|
||||||
name: Quick check
|
name: Quick check
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches-ignore:
|
||||||
["**", "!master", "!auto", "!try", "!try-linux", "!try-mac", "!try-windows", "!try-wpt", "!try-wpt-2020", "!dependabot/**"]
|
["master", "auto", "try", "try-*", "dependabot/**"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
|
|
@ -229,7 +229,7 @@ def main():
|
||||||
results = get_results(filenames, args.tag)
|
results = get_results(filenames, args.tag)
|
||||||
if not results:
|
if not results:
|
||||||
print("Did not find any unexpected results.")
|
print("Did not find any unexpected results.")
|
||||||
create_check_run("Did not find any unexpected results.")
|
create_check_run("Did not find any unexpected results.", args.tag)
|
||||||
return
|
return
|
||||||
|
|
||||||
print(results.to_string())
|
print(results.to_string())
|
||||||
|
|
|
@ -24,6 +24,17 @@ from mach.decorators import (
|
||||||
|
|
||||||
from servo.command_base import CommandBase, cd, call
|
from servo.command_base import CommandBase, cd, call
|
||||||
|
|
||||||
|
VALID_TRY_BRACHES = [
|
||||||
|
"try",
|
||||||
|
"try-linux",
|
||||||
|
"try-mac",
|
||||||
|
"try-windows",
|
||||||
|
"try-wpt",
|
||||||
|
"try-wpt-2020",
|
||||||
|
"try-wpt-mac",
|
||||||
|
"try-wpt-mac-2020"
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
@CommandProvider
|
@CommandProvider
|
||||||
class MachCommands(CommandBase):
|
class MachCommands(CommandBase):
|
||||||
|
@ -282,7 +293,6 @@ class MachCommands(CommandBase):
|
||||||
def try_jobs(self, jobs):
|
def try_jobs(self, jobs):
|
||||||
branches = []
|
branches = []
|
||||||
# we validate branches because force pushing is destructive
|
# we validate branches because force pushing is destructive
|
||||||
VALID_TRY_BRACHES = ["try", "try-linux", "try-mac", "try-windows", "try-wpt", "try-wpt-2020"]
|
|
||||||
for job in jobs:
|
for job in jobs:
|
||||||
# branches must start with try-
|
# branches must start with try-
|
||||||
if "try" not in job:
|
if "try" not in job:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue