Skip to content

Commit

Permalink
Ensure libffi pkgconfig is set up for WPT tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed May 13, 2019
1 parent 7119bc0 commit 4ca139e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion etc/taskcluster/decision_task.py
Expand Up @@ -519,7 +519,12 @@ def macos_wpt():
)
def macos_run_task(name):
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",
total_chunks=6, processes=4, chunks=[1,2,3])

Expand Down

0 comments on commit 4ca139e

Please sign in to comment.