diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-05-03 09:09:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 09:09:19 -0400 |
commit | dd5ab9eaebf35e33d73fe1af93abf9c7b63328ad (patch) | |
tree | 703a25e4c4f0c86899c9dd5f297972a7a0532521 | |
parent | 60c7266e187f3b8de05d9b98c64af06a87b8bb3e (diff) | |
parent | e4d05c1c247445367dc7bf266c56caecf4bb575b (diff) | |
download | servo-dd5ab9eaebf35e33d73fe1af93abf9c7b63328ad.tar.gz servo-dd5ab9eaebf35e33d73fe1af93abf9c7b63328ad.zip |
Auto merge of #23316 - servo:scope, r=SimonSapin
Give the correct scopes to daily tasks
Follow up to https://github.com/servo/servo/pull/23304
Example of failing tasks: https://tools.taskcluster.net/groups/GsqivaANRMyJJ3qA1ycvhg
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23316)
<!-- Reviewable:end -->
-rw-r--r-- | etc/taskcluster/decision_task.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 94fe5bf9678..e5b16c5b952 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -279,10 +279,10 @@ def android_nightly(job): } return ( - android_build_task("Release build") + android_build_task("Nightly build and upload") .with_treeherder("Android " + details[job]["name"], "Nightly") .with_features("taskclusterProxy") - .with_scopes("secrets:get:project/servo/s3-upload") + .with_scopes("secrets:get:project/servo/s3-upload-credentials") .with_script(""" ./mach build {flag} --release ./mach package {flag} --release --maven @@ -393,9 +393,9 @@ def windows_release(): def windows_nightly(): return ( - windows_build_task("Release build") + windows_build_task("Nightly build and upload") .with_treeherder("Windows x64", "Nightly") - .with_scopes("secrets:get:project/servo/s3-upload") + .with_scopes("secrets:get:project/servo/s3-upload-credentials") .with_script("mach build --release", "mach package --release", "mach upload-nightly windows-msvc --secret-from-taskcluster") @@ -410,7 +410,7 @@ def linux_nightly(): linux_build_task("Nightly build and upload") .with_treeherder("Linux x64", "Nightly") .with_features("taskclusterProxy") - .with_scopes("secrets:get:project/servo/s3-upload") + .with_scopes("secrets:get:project/servo/s3-upload-credentials") # Not reusing the build made for WPT because it has debug assertions .with_script( "./mach build --release", @@ -445,11 +445,11 @@ def linux_wpt(): def macos_nightly(): return ( - macos_build_task("Release build") + macos_build_task("Nightly build and upload") .with_treeherder("macOS x64", "Nightly") .with_features("taskclusterProxy") .with_scopes( - "secrets:get:project/servo/s3-upload", + "secrets:get:project/servo/s3-upload-credentials", "secrets:get:project/servo/github-homebrew-token", "secrets:get:project/servo/wpt-sync", ) |