Skip to content

Commit

Permalink
Allow new-bors to promote artifacts to rustc-builds
Browse files Browse the repository at this point in the history
This lets us use the built artifacts in tooling (e.g. perf, crater),
paving the way for starting to move towards new bors by default.
  • Loading branch information
Mark-Simulacrum committed Apr 5, 2024
1 parent 07c13a1 commit a348e11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/rustc-ci/impl/artifacts.tf
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ resource "aws_iam_role" "try_builds" {
Sid = "ArtifactsBucketWrite"
Effect = "Allow"
Resource = [
"${aws_s3_bucket.artifacts.arn}/rustc-builds-try",
"${aws_s3_bucket.artifacts.arn}/rustc-builds-try/*",
"${aws_s3_bucket.artifacts.arn}/rustc-builds-try-alt",
"${aws_s3_bucket.artifacts.arn}/rustc-builds-try-alt/*",
"${aws_s3_bucket.artifacts.arn}/rustc-builds",
"${aws_s3_bucket.artifacts.arn}/rustc-builds/*",
"${aws_s3_bucket.artifacts.arn}/rustc-builds-alt",
"${aws_s3_bucket.artifacts.arn}/rustc-builds-alt/*",
]
Action = [
"s3:GetObject",
Expand Down

0 comments on commit a348e11

Please sign in to comment.