2019-03-27 11:06:59 +00: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/.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Decision task for nightly releases.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import argparse
|
2019-05-06 17:09:29 +00:00
|
|
|
import datetime
|
2019-03-27 11:06:59 +00:00
|
|
|
import os
|
2019-05-06 17:09:29 +00:00
|
|
|
import re
|
|
|
|
|
2019-03-27 11:06:59 +00:00
|
|
|
import taskcluster
|
|
|
|
|
2019-05-28 10:24:06 +00:00
|
|
|
from lib.gradle import get_variants_for_build_type, get_geckoview_versions
|
2019-04-23 12:21:21 +00:00
|
|
|
from lib.tasks import (
|
|
|
|
fetch_mozharness_task_id,
|
|
|
|
schedule_task_graph,
|
|
|
|
TaskBuilder,
|
|
|
|
)
|
2019-03-28 17:05:51 +00:00
|
|
|
from lib.chain_of_trust import (
|
2019-03-27 11:06:59 +00:00
|
|
|
populate_chain_of_trust_task_graph,
|
|
|
|
populate_chain_of_trust_required_but_unused_files
|
|
|
|
)
|
2019-05-27 13:00:44 +00:00
|
|
|
from lib.variant import Variant
|
2019-03-27 11:06:59 +00:00
|
|
|
|
|
|
|
REPO_URL = os.environ.get('MOBILE_HEAD_REPOSITORY')
|
|
|
|
COMMIT = os.environ.get('MOBILE_HEAD_REV')
|
|
|
|
PR_TITLE = os.environ.get('GITHUB_PULL_TITLE', '')
|
2019-04-23 12:21:21 +00:00
|
|
|
SHORT_HEAD_BRANCH = os.environ.get('SHORT_HEAD_BRANCH')
|
2019-03-27 11:06:59 +00:00
|
|
|
|
|
|
|
# If we see this text inside a pull request title then we will not execute any tasks for this PR.
|
|
|
|
SKIP_TASKS_TRIGGER = '[ci skip]'
|
|
|
|
|
|
|
|
|
|
|
|
BUILDER = TaskBuilder(
|
|
|
|
task_id=os.environ.get('TASK_ID'),
|
2019-03-28 10:44:23 +00:00
|
|
|
repo_url=REPO_URL,
|
2019-04-02 13:27:29 +00:00
|
|
|
git_ref=os.environ.get('MOBILE_HEAD_BRANCH'),
|
2019-04-23 12:21:21 +00:00
|
|
|
short_head_branch=SHORT_HEAD_BRANCH,
|
2019-03-27 11:06:59 +00:00
|
|
|
commit=COMMIT,
|
|
|
|
owner="fenix-eng-notifications@mozilla.com",
|
|
|
|
source='{}/raw/{}/.taskcluster.yml'.format(REPO_URL, COMMIT),
|
|
|
|
scheduler_id=os.environ.get('SCHEDULER_ID', 'taskcluster-github'),
|
|
|
|
tasks_priority=os.environ.get('TASKS_PRIORITY'),
|
2019-03-28 10:44:23 +00:00
|
|
|
date_string=os.environ.get('BUILD_DATE'),
|
2019-04-02 11:56:45 +00:00
|
|
|
trust_level=os.environ.get('TRUST_LEVEL'),
|
2019-03-27 11:06:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-04-23 12:21:21 +00:00
|
|
|
def pr_or_push(is_push):
|
|
|
|
if not is_push and SKIP_TASKS_TRIGGER in PR_TITLE:
|
2019-03-27 14:23:03 +00:00
|
|
|
print("Pull request title contains", SKIP_TASKS_TRIGGER)
|
|
|
|
print("Exit")
|
2019-03-28 17:03:38 +00:00
|
|
|
return {}
|
2019-03-27 14:23:03 +00:00
|
|
|
|
|
|
|
build_tasks = {}
|
2019-04-05 14:21:51 +00:00
|
|
|
signing_tasks = {}
|
2019-03-27 14:23:03 +00:00
|
|
|
other_tasks = {}
|
|
|
|
|
2019-05-28 10:24:06 +00:00
|
|
|
for variant in get_variants_for_build_type('debug'):
|
2019-04-05 14:21:51 +00:00
|
|
|
assemble_task_id = taskcluster.slugId()
|
|
|
|
build_tasks[assemble_task_id] = BUILDER.craft_assemble_task(variant)
|
2019-03-27 14:23:03 +00:00
|
|
|
build_tasks[taskcluster.slugId()] = BUILDER.craft_test_task(variant)
|
|
|
|
|
|
|
|
for craft_function in (
|
|
|
|
BUILDER.craft_detekt_task,
|
|
|
|
BUILDER.craft_ktlint_task,
|
|
|
|
BUILDER.craft_lint_task,
|
|
|
|
BUILDER.craft_compare_locales_task,
|
|
|
|
):
|
|
|
|
other_tasks[taskcluster.slugId()] = craft_function()
|
|
|
|
|
2019-05-27 15:31:06 +00:00
|
|
|
if is_push and SHORT_HEAD_BRANCH == 'master':
|
|
|
|
other_tasks[taskcluster.slugId()] = BUILDER.craft_dependencies_task()
|
|
|
|
|
|
|
|
return (build_tasks, signing_tasks, other_tasks)
|
|
|
|
|
|
|
|
|
|
|
|
def raptor(is_staging):
|
|
|
|
build_tasks = {}
|
|
|
|
signing_tasks = {}
|
|
|
|
other_tasks = {}
|
|
|
|
|
|
|
|
geckoview_nightly_version = get_geckoview_versions()['nightly']
|
|
|
|
mozharness_task_id = fetch_mozharness_task_id(geckoview_nightly_version)
|
|
|
|
gecko_revision = taskcluster.Queue().task(mozharness_task_id)['payload']['env']['GECKO_HEAD_REV']
|
|
|
|
|
|
|
|
for variant in [Variant.from_values(abi, False, 'raptor') for abi in ('aarch64', 'arm')]:
|
|
|
|
assemble_task_id = taskcluster.slugId()
|
|
|
|
build_tasks[assemble_task_id] = BUILDER.craft_assemble_task(variant)
|
|
|
|
signing_task_id = taskcluster.slugId()
|
|
|
|
signing_tasks[signing_task_id] = BUILDER.craft_raptor_signing_task(assemble_task_id, variant, is_staging)
|
|
|
|
|
|
|
|
all_raptor_craft_functions = [
|
|
|
|
BUILDER.craft_raptor_tp6m_cold_task(for_suite=i)
|
|
|
|
for i in range(1, 15)
|
|
|
|
]
|
|
|
|
for craft_function in all_raptor_craft_functions:
|
|
|
|
args = (signing_task_id, mozharness_task_id, variant, gecko_revision)
|
|
|
|
other_tasks[taskcluster.slugId()] = craft_function(*args)
|
|
|
|
|
2019-04-05 14:21:51 +00:00
|
|
|
return (build_tasks, signing_tasks, other_tasks)
|
2019-03-27 14:23:03 +00:00
|
|
|
|
|
|
|
|
2019-05-06 17:09:29 +00:00
|
|
|
def release(track, is_staging, version_name):
|
2019-05-28 10:24:06 +00:00
|
|
|
variants = get_variants_for_build_type(track)
|
|
|
|
architectures = [variant.abi for variant in variants]
|
2019-04-05 14:21:51 +00:00
|
|
|
apk_paths = ["public/target.{}.apk".format(arch) for arch in architectures]
|
2019-03-27 11:06:59 +00:00
|
|
|
|
|
|
|
build_tasks = {}
|
|
|
|
signing_tasks = {}
|
|
|
|
push_tasks = {}
|
|
|
|
|
|
|
|
build_task_id = taskcluster.slugId()
|
2019-05-06 17:09:29 +00:00
|
|
|
build_tasks[build_task_id] = BUILDER.craft_assemble_release_task(architectures, track, is_staging, version_name)
|
2019-03-27 11:06:59 +00:00
|
|
|
|
|
|
|
signing_task_id = taskcluster.slugId()
|
2019-05-06 17:09:29 +00:00
|
|
|
signing_tasks[signing_task_id] = BUILDER.craft_release_signing_task(
|
2019-03-27 11:06:59 +00:00
|
|
|
build_task_id,
|
2019-04-05 14:21:51 +00:00
|
|
|
apk_paths=apk_paths,
|
2019-05-06 17:09:29 +00:00
|
|
|
track=track,
|
2019-03-27 11:06:59 +00:00
|
|
|
is_staging=is_staging,
|
|
|
|
)
|
|
|
|
|
|
|
|
push_task_id = taskcluster.slugId()
|
|
|
|
push_tasks[push_task_id] = BUILDER.craft_push_task(
|
|
|
|
signing_task_id,
|
2019-04-05 14:21:51 +00:00
|
|
|
apks=apk_paths,
|
2019-05-06 17:09:29 +00:00
|
|
|
track=track,
|
2019-04-05 14:21:51 +00:00
|
|
|
is_staging=is_staging,
|
2019-03-27 11:06:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
return (build_tasks, signing_tasks, push_tasks)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description='Creates and submit a graph of tasks on Taskcluster.'
|
|
|
|
)
|
|
|
|
|
|
|
|
subparsers = parser.add_subparsers(dest='command')
|
|
|
|
|
2019-04-05 14:21:51 +00:00
|
|
|
subparsers.add_parser('pull-request')
|
|
|
|
subparsers.add_parser('push')
|
2019-03-27 11:06:59 +00:00
|
|
|
|
2019-05-27 15:31:06 +00:00
|
|
|
raptor_parser = subparsers.add_parser('raptor')
|
|
|
|
raptor_parser.add_argument('--staging', action='store_true')
|
|
|
|
|
2019-05-06 17:09:29 +00:00
|
|
|
nightly_parser = subparsers.add_parser('nightly')
|
|
|
|
nightly_parser.add_argument('--staging', action='store_true')
|
2019-03-27 11:06:59 +00:00
|
|
|
|
2019-05-06 17:09:29 +00:00
|
|
|
release_parser = subparsers.add_parser('beta')
|
|
|
|
release_parser.add_argument('tag')
|
2019-03-27 11:06:59 +00:00
|
|
|
|
2019-05-06 17:09:29 +00:00
|
|
|
result = parser.parse_args()
|
2019-03-27 11:06:59 +00:00
|
|
|
command = result.command
|
2019-04-05 14:21:51 +00:00
|
|
|
taskcluster_queue = taskcluster.Queue({'baseUrl': 'http://taskcluster/queue/v1'})
|
2019-03-27 11:06:59 +00:00
|
|
|
|
2019-04-05 14:21:51 +00:00
|
|
|
if command == 'pull-request':
|
|
|
|
ordered_groups_of_tasks = pr_or_push(False)
|
|
|
|
elif command == 'push':
|
|
|
|
ordered_groups_of_tasks = pr_or_push(True)
|
2019-05-27 15:31:06 +00:00
|
|
|
elif command == 'raptor':
|
|
|
|
ordered_groups_of_tasks = raptor(result.staging)
|
2019-05-06 17:09:29 +00:00
|
|
|
elif command == 'nightly':
|
|
|
|
formatted_date = datetime.datetime.now().strftime('%y%V')
|
|
|
|
ordered_groups_of_tasks = release('nightly', result.staging, '1.0.{}'.format(formatted_date))
|
|
|
|
elif command == 'beta':
|
|
|
|
semver = re.compile(r'^\d+\.\d+\.\d+-beta\.\d+$')
|
|
|
|
if not semver.match(result.tag):
|
|
|
|
raise ValueError('Github tag must be in beta semver format, e.g.: "1.0.0-beta.0')
|
|
|
|
ordered_groups_of_tasks = release('beta', False, result.tag)
|
2019-03-27 11:06:59 +00:00
|
|
|
else:
|
|
|
|
raise Exception('Unsupported command "{}"'.format(command))
|
|
|
|
|
|
|
|
full_task_graph = schedule_task_graph(ordered_groups_of_tasks)
|
|
|
|
|
|
|
|
populate_chain_of_trust_task_graph(full_task_graph)
|
|
|
|
populate_chain_of_trust_required_but_unused_files()
|