Created
June 7, 2016 23:48
-
-
Save acmiyaguchi/f3ed620414821a0da02e09a77e470e0c to your computer and use it in GitHub Desktop.
Releasetasks sample dump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from releasetasks.test.firefox import make_task_graph | |
from releasetasks.test import PVT_KEY_FILE | |
import pprint | |
pp = pprint.PrettyPrinter(indent=2) | |
graph = make_task_graph( | |
product="firefox", | |
version="42.0b2", | |
next_version="42.0b3", | |
appVersion="42.0", | |
buildNumber=3, | |
source_enabled=True, | |
checksums_enabled=True, | |
en_US_config={ | |
"platforms": { | |
"macosx64": {"task_id": "abc"}, | |
"win32": {"task_id": "def"}, | |
"win64": {"task_id": "jgh"}, | |
"linux": {"task_id": "ijk"}, | |
"linux64": {"task_id": "lmn"}, | |
} | |
}, | |
l10n_config={}, | |
repo_path="releases/foo", | |
revision="fedcba654321", | |
mozharness_changeset="abcd", | |
partial_updates={ | |
"38.0": { | |
"buildNumber": 1, | |
"locales": ["de", "en-GB", "zh-TW"], | |
}, | |
"37.0": { | |
"buildNumber": 2, | |
"locales": ["de", "en-GB", "zh-TW"], | |
}, | |
}, | |
branch="foo", | |
updates_enabled=True, | |
bouncer_enabled=True, | |
push_to_candidates_enabled=True, | |
beetmover_candidates_bucket='mozilla-releng-beet-mover-dev', | |
push_to_releases_enabled=True, | |
uptake_monitoring_enabled=True, | |
postrelease_version_bump_enabled=True, | |
postrelease_bouncer_aliases_enabled=True, | |
tuxedo_server_url="https://bouncer.real.allizom.org/api", | |
signing_class="release-signing", | |
verifyConfigs={}, | |
release_channels=["foo"], | |
balrog_api_root="https://balrog.real/api", | |
funsize_balrog_api_root="http://balrog/api", | |
signing_pvt_key=PVT_KEY_FILE, | |
build_tools_repo_path='build/tools', | |
push_to_releases_automatic=True, | |
partner_repacks_platforms=["win32", "macosx64"], | |
) | |
pp.pprint(graph) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
python dump.py | grep 'description'
will give a fairly useful view for the chronological ordering of tasks. First the docker images are generated for funsize-update-generator and funsize-balrog-submitter. The AV database for beetmover is then updated. This marks the end of the preparatory steps. A task moves the artifacts of an earlier CI build into the correct directory and the whole process continues from there.Below is an abridged output from the search.