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

Another Windows builder. Split up linux-rel. #494

Merged
merged 4 commits into from Sep 30, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Another Windows builder. Split up linux-rel.

  • Loading branch information
larsbergstrom committed Sep 30, 2016
commit ad37c6befcfb09d0c250bcc7c67a4626901224a8
@@ -11,7 +11,7 @@ from passwords import HOMU_BUILDBOT_SECRET, GITHUB_STATUS_TOKEN
LINUX_SLAVES = ["servo-linux1", "servo-linux2", "servo-linux3"]
MAC_SLAVES = ["servo-mac2", "servo-mac3", "servo-mac4", "servo-macpro1"]
CROSS_SLAVES = ["servo-linux-cross1", "servo-linux-cross2"]

This comment has been minimized.

@aneeshusa

aneeshusa Sep 30, 2016

Member

Same thing for CROSS_SLAVES as well.

WINDOWS_SLAVES = ["servo-windows1"]
WINDOWS_SLAVES = ["servo-windows{}".format(i) for i in xrange(1, 3)]


c = BuildmasterConfig = {}
@@ -68,7 +68,8 @@ c['schedulers'].append(schedulers.AnyBranchScheduler(
"arm64",
"linux-dev",
"linux-dev-yaml",
"linux-rel",
"linux-rel-css",
"linux-rel-wpt",
"mac-dev-unit",
"mac-rel-css",
"mac-rel-wpt1",
@@ -93,7 +94,8 @@ c['schedulers'].append(schedulers.ForceScheduler(
"linux-dev",
"linux-dev-yaml",
"linux-nightly",
"linux-rel",
"linux-rel-css",
"linux-rel-wpt",
"linux-rel-intermittent",
"mac-dev-unit",
"mac-nightly",
@@ -172,7 +174,9 @@ c['builders'] = [
DynamicServoBuilder("arm64", CROSS_SLAVES, envs.build_arm64),
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-nightly", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-rel", LINUX_SLAVES,
DynamicServoBuilder("linux-rel-css", LINUX_SLAVES,
envs.build_linux_rel_debug_assert),
DynamicServoBuilder("linux-rel-wpt", LINUX_SLAVES,
envs.build_linux_rel_debug_assert),
DynamicServoBuilder("linux-rel-intermittent", LINUX_SLAVES,
envs.build_linux),
@@ -54,11 +54,14 @@ linux-dev:
- bash ./etc/ci/manifest_changed.sh
- bash ./etc/ci/check_no_unwrap.sh

linux-rel:
linux-rel-wpt:
- ./mach build --release
- ./mach test-wpt-failure
- ./mach test-wpt --release --processes 24 --log-raw test-wpt.log --log-errorsummary wpt-errorsummary.log
- ./mach test-wpt --release --binary-arg=--multiprocess --processes 24 --log-raw test-wpt-mp.log --log-errorsummary wpt-mp-errorsummary.log eventsource

linux-rel-css:
- ./mach build --release
- ./mach test-css --release --processes 16 --log-raw test-css.log --log-errorsummary css-errorsummary.log
- ./mach build-cef --release
- ./mach build-geckolib --release
@@ -129,8 +129,8 @@ secret = "{{ pillar["homu"]["gh-webhook-secret"] }}"
[repo.servo.buildbot]
url = "http://build.servo.org"
secret = "{{ pillar["homu"]["buildbot-secret"] }}"
builders = ["linux-dev", "linux-rel", "mac-dev-unit", "mac-rel-wpt1", "mac-rel-wpt2", "mac-rel-css", "arm32", "arm64", "windows-dev"]
try_builders = ["linux-dev", "linux-rel", "mac-dev-unit", "mac-rel-wpt1", "mac-rel-wpt2", "mac-rel-css", "arm32", "arm64", "windows-dev"]
builders = ["linux-dev", "linux-rel-css", "linux-rel-wpt", "mac-dev-unit", "mac-rel-wpt1", "mac-rel-wpt2", "mac-rel-css", "arm32", "arm64", "windows-dev"]
try_builders = ["linux-dev", "linux-rel-css", "linux-rel-wpt", "mac-dev-unit", "mac-rel-wpt1", "mac-rel-wpt2", "mac-rel-css", "arm32", "arm64", "windows-dev"]
username = "{{ pillar["homu"]["buildbot-http-user"] }}"
password = "{{ pillar["homu"]["buildbot-http-pass"] }}"

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.