2019-05-21 23:09:20 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
---
|
2018-03-28 23:53:30 +03:00
|
|
|
# Definitions for jobs that run periodically. For details on the format, see
|
2021-10-06 07:47:46 +03:00
|
|
|
# `taskcluster/gecko_taskgraph/cron/schema.py`. For documentation, see
|
2018-03-28 23:53:30 +03:00
|
|
|
# `taskcluster/docs/cron.rst`.
|
2020-08-24 20:27:18 +03:00
|
|
|
#
|
|
|
|
# Thunderbird specific documentation: `comm/taskcluster/docs/cron.rst`
|
|
|
|
# To disable Daily builds, set `when: []` on the `nightly-desktop` and
|
|
|
|
# `searchfox-index` jobs and push to comm-central.
|
2018-03-28 23:53:30 +03:00
|
|
|
|
|
|
|
jobs:
|
2018-04-28 01:10:06 +03:00
|
|
|
- name: nightly-desktop
|
2018-03-28 23:53:30 +03:00
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Nd
|
|
|
|
target-tasks-method: nightly_desktop
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
2024-07-12 12:53:47 +03:00
|
|
|
when: [{hour: 11, minute: 0}]
|
|
|
|
# when: []
|
2018-03-28 23:53:30 +03:00
|
|
|
|
|
|
|
- name: nightly-linux
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Nd-Ln
|
|
|
|
target-tasks-method: nightly_linux
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
|
|
|
when: [] # never (hook only)
|
|
|
|
|
|
|
|
- name: nightly-osx
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Nd-OSX
|
|
|
|
target-tasks-method: nightly_macosx
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
|
|
|
when: [] # never (hook only)
|
|
|
|
|
|
|
|
- name: nightly-win32
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Nd-win32
|
|
|
|
target-tasks-method: nightly_win32
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
|
|
|
when: [] # never (hook only)
|
|
|
|
|
|
|
|
- name: nightly-win64
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Nd-win64
|
|
|
|
target-tasks-method: nightly_win64
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
|
|
|
when: [] # never (hook only)
|
2020-06-20 01:36:38 +03:00
|
|
|
|
|
|
|
- name: searchfox-index
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: Searchfox
|
2020-06-26 23:45:37 +03:00
|
|
|
target-tasks-method: comm_searchfox_index
|
2020-06-20 01:36:38 +03:00
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
2021-11-20 17:23:21 +03:00
|
|
|
when: [{hour: 11, minute: 0}]
|
|
|
|
# when: []
|
2020-08-21 20:13:35 +03:00
|
|
|
|
|
|
|
- name: l10n-bumper
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: l10n-bump
|
|
|
|
target-tasks-method: l10n_bump
|
|
|
|
run-on-projects:
|
2024-07-31 21:23:14 +03:00
|
|
|
- comm-central
|
2020-08-21 20:13:35 +03:00
|
|
|
- comm-beta
|
2024-07-31 21:23:14 +03:00
|
|
|
when:
|
|
|
|
by-project:
|
|
|
|
comm-central: [{hour: 6, minute: 45}, {hour: 18, minute: 45}]
|
|
|
|
comm-beta: [{hour: 9, minute: 00}]
|
|
|
|
# No default
|
2022-10-09 02:29:02 +03:00
|
|
|
|
2024-01-30 19:26:23 +03:00
|
|
|
- name: tb-rust-vendor-check
|
|
|
|
job:
|
|
|
|
type: decision-task
|
|
|
|
treeherder-symbol: tb-rust-vendor-check
|
|
|
|
target-tasks-method: tb_rust_vendor_check
|
|
|
|
run-on-projects:
|
|
|
|
- comm-central
|
|
|
|
when: [] # never (hook only)
|