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

Call intermittent checker #453

Merged
merged 1 commit into from Aug 18, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Call intermittent checker

  • Loading branch information
notriddle committed Aug 10, 2016
commit 21d29e9d34dfa40a101f4cb05e070c3f984c6034
@@ -93,9 +93,11 @@ c['schedulers'].append(schedulers.ForceScheduler(
"linux-dev-yaml",
"linux-nightly",
"linux-rel",
"linux-rel-intermittent",
"mac-dev-unit",
"mac-nightly",
"mac-rel-css",
"mac-rel-intermittent",
"mac-rel-wpt",
"windows-dev",
"windows-nightly",
@@ -107,7 +109,9 @@ c['schedulers'].append(schedulers.Nightly(
builderNames=[
"android-nightly",
"linux-nightly",
"linux-rel-intermittent",
"mac-nightly",
"mac-rel-intermittent",
"windows-nightly",
],
hour=1,
@@ -167,9 +171,12 @@ c['builders'] = [
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-nightly", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-rel", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-rel-intermittent", LINUX_SLAVES,
envs.build_linux),
DynamicServoBuilder("mac-dev-unit", MAC_SLAVES, envs.build_mac),
DynamicServoBuilder("mac-nightly", MAC_SLAVES, envs.build_mac),
DynamicServoBuilder("mac-rel-css", MAC_SLAVES, envs.build_mac),
DynamicServoBuilder("mac-rel-intermittent", MAC_SLAVES, envs.build_mac),
DynamicServoBuilder("mac-rel-wpt", MAC_SLAVES, envs.build_mac),
DynamicServoBuilder("windows-dev", WINDOWS_SLAVES, envs.build_windows),
DynamicServoBuilder("windows-nightly", WINDOWS_SLAVES, envs.build_windows),
@@ -27,6 +27,14 @@ mac-nightly:
- ./mach package --release
- ./etc/ci/upload_nightly.sh mac

linux-rel-intermittent:
- ./mach build --release
- ./etc/ci/check_intermittents.sh --log-raw intermittents.log

mac-rel-intermittent:
- ./mach build --release
- ./etc/ci/check_intermittents.sh --log-raw intermittents.log

linux-dev:
- ./mach test-tidy --no-progress --all
- ./mach test-tidy --no-progress --self-test
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.