From 85e038b24e4a07bc1152c09b014c3d7a6830c342 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sat, 9 Apr 2016 23:48:06 -0400 Subject: [PATCH] Run compiletest on linux-dev The compiletest test is quick to run and shouldn't increase build times very much. --- buildbot/master/files/config/master.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/buildbot/master/files/config/master.cfg b/buildbot/master/files/config/master.cfg index 60047a18..20d4fe94 100644 --- a/buildbot/master/files/config/master.cfg +++ b/buildbot/master/files/config/master.cfg @@ -105,6 +105,7 @@ mac_test_env = dict({ linux_dev_factory = create_servo_factory([ steps.ShellCommand(command=["./mach", "test-tidy", "--no-progress"], env=linux_headless_env), steps.Compile(command=["./mach", "build", "--dev"], env=linux_headless_env), + steps.ShellCommand(command=["./mach", "test-compiletest"], env=linux_headless_env), steps.ShellCommand(command=["./mach", "test-unit"], env=linux_headless_env), steps.Compile(command=["./mach", "build-cef"], env=linux_headless_env), steps.Compile(command=["./mach", "build-geckolib"], env=linux_headless_env),