From 34e26b0b72e4d455f20aa01eaa39bafc0960e884 Mon Sep 17 00:00:00 2001 From: Lars Bergstrom Date: Thu, 23 Jul 2015 19:03:46 -0500 Subject: [PATCH] Run WPT against the release binaries, so that IPC servo can land --- buildbot/master/master.cfg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/buildbot/master/master.cfg b/buildbot/master/master.cfg index ab5db462..a4568d38 100644 --- a/buildbot/master/master.cfg +++ b/buildbot/master/master.cfg @@ -141,15 +141,15 @@ linux1_factory.addStep(steps.ShellCommand(command=["./mach", "test-ref", "--kind linux2_factory = util.BuildFactory() linux2_factory.addStep(steps.Git(repourl=SERVO_REPO, mode="full", method="clobber")) -linux2_factory.addStep(steps.Compile(command=["./mach", "build", "--dev"], env=linux_headless_env)) +linux2_factory.addStep(steps.Compile(command=["./mach", "build", "--release"], env=linux_headless_env)) linux2_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt-failure"], env=linux_headless_env)) -linux2_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt", "--processes", "4", +linux2_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt", "--release", "--processes", "4", "--log-raw", "wpt_raw.log"], env=linux_headless_env, logfiles={"wpt_raw.log": "wpt_raw.log"})) linux2_factory.addStep(steps.ShellCommand(command=["gzip", "wpt_raw.log"], env=linux_headless_env)) -linux2_factory.addStep(steps.Compile(command=["./mach", "build-cef"], env=linux_headless_env)) +linux2_factory.addStep(steps.Compile(command=["./mach", "build-cef", "--release"], env=linux_headless_env)) linux3_factory = util.BuildFactory() linux3_factory.addStep(steps.Git(repourl=SERVO_REPO, mode="full", method="clobber")) @@ -166,10 +166,10 @@ task_limited_test_env = dict({'RUST_TEST_TASKS': '1'}, **mac_test_env) mac1_factory = util.BuildFactory() mac1_factory.addStep(steps.Git(repourl=SERVO_REPO, mode="full", method="clobber")) mac1_factory.addStep(steps.ShellCommand(command=["./mach", "test-tidy"])) -mac1_factory.addStep(steps.Compile(command=["./mach", "build", "--dev"], env=mac_test_env)) +mac1_factory.addStep(steps.Compile(command=["./mach", "build", "--release"], env=mac_test_env)) mac1_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt-failure"], env=mac_test_env)) -mac1_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt", "--processes", "4", +mac1_factory.addStep(steps.ShellCommand(command=["./mach", "test-wpt", "--release", "--processes", "4", "--log-raw", "wpt_raw.log"], env=mac_test_env, logfiles={"wpt_raw.log": "wpt_raw.log"}))