aboutsummaryrefslogtreecommitdiffstats
path: root/etc/taskcluster/decision_task.py
diff options
context:
space:
mode:
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r--etc/taskcluster/decision_task.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py
index 66937891e79..4b10b0e940b 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -579,7 +579,7 @@ def macos_nightly():
def update_wpt():
- build_task = macos_release_build()
+ build_task = macos_release_build_with_debug_assertions()
update_task = (
macos_task("WPT update")
.with_python2()
@@ -608,13 +608,13 @@ def update_wpt():
)
-def macos_release_build(args="", priority=None):
+def macos_release_build_with_debug_assertions(priority=None):
return (
macos_build_task("Release build")
.with_treeherder("macOS x64", "Release")
.with_priority(priority)
.with_script("\n".join([
- "./mach build --release --verbose " + args,
+ "./mach build --release --verbose --with-debug-assertions",
"./etc/ci/lockfile_changed.sh",
"tar -czf target.tar.gz" +
" target/release/servo" +
@@ -623,12 +623,12 @@ def macos_release_build(args="", priority=None):
" target/release/build/osmesa-src-*/out/src/mapi/shared-glapi/.libs",
]))
.with_artifacts("repo/target.tar.gz")
- .find_or_create("build.macos_x64_release." + CONFIG.task_id())
+ .find_or_create("build.macos_x64_release_w_assertions." + CONFIG.task_id())
)
def macos_wpt():
- build_task = macos_release_build("--with-debug-assertions", priority="high")
+ build_task = macos_release_build_with_debug_assertions(priority="high")
def macos_run_task(name):
task = macos_task(name).with_python2()
return with_homebrew(task, ["etc/taskcluster/macos/Brewfile-gstreamer"])