Skip to content

Commit

Permalink
Bug 1806454 - fixup and cleanup debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
gbrownmozilla authored and mergify[bot] committed Mar 31, 2023
1 parent faee47a commit 2d99cf9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.schema import resolve_keyed_by


transforms = TransformSequence()


Expand Down
2 changes: 0 additions & 2 deletions taskcluster/android_taskgraph/transforms/release_started.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ def add_github_link(config, tasks):
version = MobileVersion.parse(config.params["version"])
repo = get_repository(".")
git_tags = repo.run("tag", "-l", TAG_PREFIX + "*").splitlines()
if not git_tags:
return
previous_version = get_previous_tag_version(version, git_tags)
current_revision = config.params["head_rev"]
repo_url = config.params["base_repository"]
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/android_taskgraph/transforms/version_bump.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@transforms.add
def resolve_keys(config, tasks):
for task in tasks:
for key in ("worker.push",):
for key in ("worker.push", "treeherder.symbol"):
resolve_keyed_by(
task,
key,
Expand Down
1 change: 0 additions & 1 deletion taskcluster/ci/mark-as-shipped/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ task-template:
by-build-type:
release: mark-shipped-release
beta: mark-shipped-beta
default: mark-shipped
platform: release/opt
kind: build
tier: 2
6 changes: 5 additions & 1 deletion taskcluster/ci/version-bump/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ kind-dependencies:
group-by: build-type

only-for-build-types:
- beta
- release

task-template:
Expand All @@ -36,5 +37,8 @@ task-template:
default: false

treeherder:
job-symbol: vb
job-symbol:
by-build-type:
release: vb
beta: vbB
kind: build

0 comments on commit 2d99cf9

Please sign in to comment.