Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temp: try autograph gcp prod signing #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions taskcluster/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workers:
provisioner: scriptworker-k8s
implementation: scriptworker-signing
os: scriptworker
worker-type: mobile-t-signing
worker-type: mobile-t-signing-dev
images:
provisioner: 'mobile-{level}'
implementation: docker-worker
Expand All @@ -53,7 +53,7 @@ workers:
worker-type:
by-level:
"3": mobile-3-signing
default: mobile-t-signing
default: mobile-t-signing-dev
t-bitbar.*:
provisioner: proj-autophone
implementation: generic-worker
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/rb_taskgraph/transforms/signing_apks.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def build_signing_task(config, tasks):
"taskId": {"task-reference": "<build>"},
"taskType": "build",
"paths": list(dep.attributes["apks"].values()),
"formats": ["autograph_apk"],
"formats": ["gcp_prod_autograph_apk"],
}
]
del task["primary-dependency"]
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/rb_taskgraph/transforms/signing_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def build_signing_task(config, tasks):
"taskId": {"task-reference": "<build-bundle>"},
"taskType": "build",
"paths": [dep.attributes["aab"]],
"formats": ["autograph_aab"],
"formats": ["gcp_prod_autograph_aab"],
}]
del task["primary-dependency"]
yield task