mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
b8d8f8a712
This adds `.cron.yml` and a new mach command to interpret it. While functionality is limited to nightlies right now, there is room to expand to more diverse periodic tasks. Let your imagination run wild! MozReview-Commit-ID: KxQkaUbsjQs --HG-- extra : rebase_source : ddf0a1eadae5a1169c0ead7bcb7b9ce61b255fbf
30 lines
755 B
YAML
30 lines
755 B
YAML
# Definitions for jobs that run periodically. For details on the format, see
|
|
# `taskcluster/taskgraph/cron/schema.py`. For documentation, see
|
|
# `taskcluster/docs/cron.rst`.
|
|
|
|
jobs:
|
|
- name: nightly-desktop
|
|
job:
|
|
type: decision-task
|
|
treeherder-symbol: Nd
|
|
triggered-by: nightly
|
|
target-tasks-method: nightly_linux
|
|
projects:
|
|
- mozilla-central
|
|
- date
|
|
when:
|
|
- {hour: 16, minute: 0}
|
|
|
|
- name: nightly-android
|
|
job:
|
|
type: decision-task
|
|
treeherder-symbol: Na
|
|
triggered-by: nightly
|
|
target-tasks-method: nightly_fennec
|
|
projects:
|
|
- mozilla-central
|
|
- date
|
|
when:
|
|
- {hour: 16, minute: 0}
|
|
|