mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Ensure libffi pkgconfig is set up for WPT tests.
This commit is contained in:
parent
7119bc093f
commit
4ca139ec1e
1 changed files with 6 additions and 1 deletions
|
@ -519,7 +519,12 @@ def macos_wpt():
|
||||||
)
|
)
|
||||||
def macos_run_task(name):
|
def macos_run_task(name):
|
||||||
task = macos_task(name).with_python2()
|
task = macos_task(name).with_python2()
|
||||||
return with_homebrew(task, ["etc/taskcluster/macos/Brewfile-gstreamer"])
|
return (
|
||||||
|
with_homebrew(task, ["etc/taskcluster/macos/Brewfile-gstreamer"])
|
||||||
|
.with_script("""
|
||||||
|
export PKG_CONFIG_PATH="$(brew --prefix libffi)/lib/pkgconfig/"
|
||||||
|
""")
|
||||||
|
)
|
||||||
wpt_chunks("macOS x64", macos_run_task, build_task, repo_dir="repo",
|
wpt_chunks("macOS x64", macos_run_task, build_task, repo_dir="repo",
|
||||||
total_chunks=6, processes=4, chunks=[1,2,3])
|
total_chunks=6, processes=4, chunks=[1,2,3])
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue