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

Fix the path to the megazord symbols when uploading (backport #6389) #6390

Merged
merged 3 commits into from
Sep 20, 2024
Merged
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
1 change: 1 addition & 0 deletions automation/symbols-generation/upload_symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def upload_symbols(zip_file, token_file):
return True

print("Upload symbols failed: {0}".format(r), file=sys.stderr)
print(r.text, file=sys.stderr)
return False

def main():
Expand Down
14 changes: 0 additions & 14 deletions taskcluster/kinds/module-build/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ loader: app_services_taskgraph.loader.build_config:loader

transforms:
- app_services_taskgraph.transforms.worker:transforms
- app_services_taskgraph.transforms.secrets:transforms
- app_services_taskgraph.transforms.module_build:transforms
- taskgraph.transforms.run:transforms
- taskgraph.transforms.task:transforms
Expand Down Expand Up @@ -39,19 +38,6 @@ task-defaults:
- ':{module_name}:assembleRelease'
- ':{module_name}:publish'
- ':{module_name}:checkMavenArtifacts'
dummy-secrets:
by-level:
'3': []
default:
- content: "faketoken"
path: .symbols_upload_token
secrets:
by-level:
'3':
- name: project/application-services/symbols-token
key: token
path: .symbols_upload_token
default: []
using: gradlew
use-caches: true

Expand Down
2 changes: 1 addition & 1 deletion taskcluster/kinds/upload-symbols/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ tasks:
run:
using: run-commands
commands:
- [automation/upload_android_symbols.sh, /builds/worker/fetches/crashreporter-symbols]
- [automation/upload_android_symbols.sh, /builds/worker/fetches/crashreporter-symbols/crashreporter-symbols]
dummy-secrets:
by-level:
'3': []
Expand Down