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

Use yaml for buildbot steps #325

Merged
merged 12 commits into from Apr 20, 2016

Remove gzip steps

The steps gzipping build logs did not have logfiles listed, so they were
not available for download from the web interface. The only way to get
the logs is via ssh/scp, which works just as well for non-gzipped logs.

This will cut down on build times.
  • Loading branch information
aneeshusa committed Apr 20, 2016
commit ceff384021c75d8f95b9b5319addb27ac6d627a6
@@ -123,14 +123,12 @@ linux_rel_factory = create_servo_factory([
env=linux_headless_env,
logfiles={"test-wpt.log": "test-wpt.log",
"wpt_errorsummary.log": "wpt_errorsummary.log"}),
steps.ShellCommand(command=["gzip", "test-wpt.log"], env=linux_headless_env),
steps.ShellCommand(command=["./mach", "test-css", "--release", "--processes", "16",
"--log-raw", "test-css.log",
"--log-errorsummary", "css_errorsummary.log"],
env=linux_headless_env,
logfiles={"test-css.log": "test-css.log",
"css_errorsummary.log": "css_errorsummary.log"}),
steps.ShellCommand(command=["gzip", "test-css.log"], env=linux_headless_env),
steps.Compile(command=["./mach", "build-cef", "--release"], env=linux_headless_env),
steps.Compile(command=["./mach", "build-geckolib", "--release"], env=linux_headless_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=linux_headless_env),
@@ -148,7 +146,6 @@ mac_rel_wpt_factory = create_servo_factory([
env=mac_test_env,
logfiles={"test-wpt.log": "test-wpt.log",
"wpt_errorsummary.log": "wpt_errorsummary.log"}),
steps.ShellCommand(command=["gzip", "test-wpt.log"], env=mac_test_env),
steps.ShellCommand(command=["./mach", "build-cef", "--release"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/manifest_changed.sh"], env=mac_test_env),
@@ -171,7 +168,6 @@ mac_rel_css_factory = create_servo_factory([
env=mac_test_env,
logfiles={"test-css.log": "test-css.log",
"css_errorsummary.log": "css_errorsummary.log"}),
steps.ShellCommand(command=["gzip", "test-css.log"], env=mac_test_env),
steps.ShellCommand(command=["./mach", "build-geckolib", "--release"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/manifest_changed.sh"], env=mac_test_env),
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.