Skip to content
This repository has been archived by the owner on May 29, 2018. It is now read-only.

Commit

Permalink
Stop testruns for esr31 nightly builds (mozilla#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo committed Feb 15, 2015
1 parent f317e4a commit 19fa157
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 79 deletions.
42 changes: 1 addition & 41 deletions config/production/daily.json
Expand Up @@ -3,8 +3,7 @@
"applabel": "mozmill_daily",
"branches": [
"mozilla-central",
"mozilla-aurora",
"mozilla-esr31"
"mozilla-aurora"
],
"platforms": [
"linux",
Expand Down Expand Up @@ -194,45 +193,6 @@
"windows && 8.1 && 64bit"
]
}
},
"mozilla-esr31": {
"locales": [
"de",
"en-US",
"ru",
"zh-CN"
],
"testruns": [
"update",
"functional",
"remote"
],
"platforms": {
"linux": [
"linux && ubuntu && 14.04 && 32bit",
"linux && ubuntu && 14.10 && 32bit"
],
"linux64": [
"linux && ubuntu && 14.04 && 64bit",
"linux && ubuntu && 14.10 && 64bit"
],
"mac": [
"mac && 10.6 && 64bit",
"mac && 10.7 && 64bit",
"mac && 10.8 && 64bit",
"mac && 10.9 && 64bit"
],
"win32": [
"windows && xp && 32bit",
"windows && vista && 32bit",
"windows && 7 && 32bit",
"windows && 7 && 64bit",
"windows && 8 && 32bit",
"windows && 8 && 64bit",
"windows && 8.1 && 32bit",
"windows && 8.1 && 64bit"
]
}
}
}
}
Expand Down
38 changes: 1 addition & 37 deletions config/staging/daily.json
Expand Up @@ -4,8 +4,7 @@
"branches": [
"mozilla-central",
"mozilla-aurora",
"mozilla-beta",
"mozilla-esr31"
"mozilla-beta"
],
"platforms": [
"linux",
Expand Down Expand Up @@ -185,41 +184,6 @@
"windows && 8.1 && 64bit"
]
}
},
"mozilla-esr31": {
"locales": [
"ar",
"en-US",
"zh-CN"
],
"testruns": [
"update",
"functional",
"remote"
],
"platforms": {
"linux": [
"linux && ubuntu && 14.04 && 32bit",
"linux && ubuntu && 14.10 && 32bit"
],
"linux64": [
"linux && ubuntu && 14.04 && 64bit",
"linux && ubuntu && 14.10 && 64bit"
],
"mac": [
"mac && 10.6 && 64bit",
"mac && 10.8 && 64bit",
"mac && 10.9 && 64bit",
"mac && 10.10 && 64bit"
],
"win32": [
"windows && xp && 32bit",
"windows && 7 && 32bit",
"windows && 7 && 64bit",
"windows && 8.1 && 32bit",
"windows && 8.1 && 64bit"
]
}
}
}
}
Expand Down
7 changes: 6 additions & 1 deletion pulse.py
Expand Up @@ -208,9 +208,14 @@ def on_build(self, data):
data['tree'] = 'project'

# Queue up jobs for the branch as given by config settings
target_branch = self.config['testrun']['by_branch'][data['tree']]
target_branch = self.config['testrun']['by_branch'].get(data['tree'])
target_platform = self.get_platform_identifier(data['platform'])

# Ensure that the branch is really supported by us
if target_branch is None:
self.logger.error('Cancel processing of unsupported branch: %s' % data['tree'])
return

# Handle blacklist items if present
if 'blacklist' in target_branch:
# Cancel processing of the build if the locale is blacklisted
Expand Down

0 comments on commit 19fa157

Please sign in to comment.