Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily remove pkill. #146

Merged
merged 1 commit into from Nov 2, 2015
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Temporarily remove pkill.

This avoids the constant timeouts on the linux builder.
  • Loading branch information
jdm committed Nov 2, 2015
commit 82bee065148d7b8e9de63a4e908dab2dcb8606bd
@@ -193,12 +193,12 @@ linux_rel_factory = create_servo_factory([
steps.ShellCommand(command=["./mach", "test-wpt", "--release", "--processes", "24",
"--log-raw", "test-wpt.log"],
env=linux_headless_env, logfiles={"test-wpt.log": "test-wpt.log"}),
steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
#steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
steps.ShellCommand(command=["gzip", "test-wpt.log"], env=linux_headless_env),
steps.ShellCommand(command=["./mach", "test-css", "--release", "--processes", "24",
"--log-raw", "test-css.log"],
env=linux_headless_env, logfiles={"test-css.log": "test-css.log"}),
steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
#steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
steps.ShellCommand(command=["gzip", "test-css.log"], env=linux_headless_env),
steps.Compile(command=["./mach", "build-cef", "--release"], env=linux_headless_env),
])
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.