Skip to content
Snippets Groups Projects
Commit 341fd8d7 authored by Nick Thomas's avatar Nick Thomas
Browse files

Bug 1598436 - add nightly bouncer checks to cron, r=aki

Depends on D54657

Differential Revision: https://phabricator.services.mozilla.com/D54658

--HG--
extra : moz-landing-system : lando
parent c7bf3332
No related branches found
No related tags found
No related merge requests found
......@@ -153,12 +153,16 @@ jobs:
treeherder-symbol: Rel
target-tasks-method: cron_bouncer_check
run-on-projects:
- mozilla-central
- mozilla-beta
- mozilla-release
- mozilla-esr68
when:
by-project:
# No default branch
mozilla-central:
- {hour: 7, minute: 0}
- {hour: 19, minute: 0}
mozilla-beta:
- {hour: 7, minute: 0}
- {hour: 19, minute: 0}
......
......@@ -38,6 +38,8 @@ jobs:
run:
config:
by-release-type:
nightly:
- releases/bouncer_firefox_nightly.py
beta:
- releases/bouncer_firefox_beta.py
release:
......@@ -48,6 +50,7 @@ jobs:
- releases/bouncer_firefox_beta.py
product-field:
by-project:
mozilla-central: FIREFOX_NIGHTLY
mozilla-beta: LATEST_FIREFOX_RELEASED_DEVEL_VERSION
mozilla-release: LATEST_FIREFOX_VERSION
mozilla-esr68: FIREFOX_ESR
......
# lint_ignore=E501
config = {
"products": {
"installer-latest": {
"product-name": "Firefox-nightly-latest",
"check_uptake": True,
"platforms": [
"linux",
"linux64",
"osx",
"win",
"win64",
"win64-aarch64",
],
},
"installer-latest-ssl": {
"product-name": "Firefox-nightly-latest-SSL",
"check_uptake": True,
"platforms": [
"linux",
"linux64",
"osx",
"win",
"win64",
"win64-aarch64",
],
},
"installer-latest-l10n-ssl": {
"product-name": "Firefox-nightly-latest-l10n-SSL",
"check_uptake": True,
"platforms": [
"linux",
"linux64",
"osx",
"win",
"win64",
"win64-aarch64",
],
},
"msi-latest": {
"product-name": "Firefox-nightly-msi-latest-SSL",
"check_uptake": True,
"platforms": [
"win",
"win64",
],
},
"msi-latest-l10n": {
"product-name": "Firefox-nightly-msi-latest-l10n-SSL",
"check_uptake": True,
"platforms": [
"win",
"win64",
],
},
"stub-installer": {
"product-name": "Firefox-nightly-stub",
"check_uptake": True,
"platforms": [
"win",
"win64",
"win64-aarch64",
],
},
"stub-installer-l10n": {
"product-name": "Firefox-nightly-stub-l10n",
"check_uptake": True,
"platforms": [
"win",
"win64",
"win64-aarch64",
],
},
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment