diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-05-21 15:09:38 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-05-21 21:20:38 -0400 |
commit | ceff9a61ef03f8e11de0f5cad3facc970b1d73fd (patch) | |
tree | 1030065182b3af22d43a350e0e00a946ced52533 /etc/taskcluster/decision_task.py | |
parent | 2406d0973a18ea151e098dc17829d76a79cb0d53 (diff) | |
download | servo-ceff9a61ef03f8e11de0f5cad3facc970b1d73fd.tar.gz servo-ceff9a61ef03f8e11de0f5cad3facc970b1d73fd.zip |
Allow pushing updated WPT results to git remote.
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index abef75712ea..dda4382599f 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -490,7 +490,8 @@ def update_wpt(): "etc/taskcluster/macos/Brewfile-wpt", "etc/taskcluster/macos/Brewfile-gstreamer", ]) - .with_repo() + # Pushing the new changes to the git remote requires a full repo clone. + .with_repo(shallow=False) .with_curl_artifact_script(build_task, "target.tar.gz") .with_script(""" export PKG_CONFIG_PATH="$(brew --prefix libffi)/lib/pkgconfig/" |