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

chore: upgrade to Aspect Workflows 5.9.0 #740

Merged
merged 1 commit into from
Jan 31, 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
10 changes: 5 additions & 5 deletions .aspect/workflows/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", _http_archive = "http_archi
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")

# TODO: move this to a rule set so repositories on Aspect Workflows can avoid this boilerplate
rosetta_version = "5.9.0-rc.19"
rosetta_version = "5.9.0"
rosetta_integrity = {
"darwin_aarch64": "sha256-5pw7bZTuRhmUcspbu1mxEcY/mGRS3WpcU6dXbXBXL0k=",
"darwin_x86_64": "sha256-rO1UC2F9t44LKAf5BotHm7K0Dd1HvDUy3GDtbe1Q7KQ=",
"linux_aarch64": "sha256-n+hsJe9HE/5xyjTZKCoeAFFNIs+CMM3YwlBfElXj6Zk=",
"linux_x86_64": "sha256-7ADACe8Q2riUkxzwpuNvfLWGw2RRD19zP3m96UloAaQ=",
"darwin_aarch64": "sha256-evvaKQ2Wz6Hi8F82pLCBe1qYsTPBVEHCkJRqWvkpvgU=",
"darwin_x86_64": "sha256-ttlFMEYs2Ya5ykYbOCiW7afB0EZItMOgs1uT/Lf92Wc=",
"linux_aarch64": "sha256-Yywq2MF8Gg3Rl/LQjGGT8MJf6OzT9IQJYkyW6Hb3J0w=",
"linux_x86_64": "sha256-f2uy4Gy/sVStb5U0M7q/LsNroni2zWAa6AlrjvPQooQ=",
}

# https://github.com/suzuki-shunsuke/circleci-config-merge/releases
Expand Down
2 changes: 1 addition & 1 deletion .aspect/workflows/terraform/workflows.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "aspect_workflows" {
region = local.region

# Aspect Workflows terraform module
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.9.0-rc.19/workflows-gcp/terraform-gcp-aspect-workflows.zip"
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.9.0/terraform-gcp-aspect-workflows.zip"

# Network properties
network = google_compute_network.workflows_network.id
Expand Down
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ workflows:
filters:
branches:
only:
- main
- aspect-build/test-delivery
- /^main$/
- /^aspect-build\/test-delivery$/
requires:
- aw-root_workspace_test
- aw-buildifier:
Expand Down Expand Up @@ -550,12 +550,12 @@ jobs:
and:
- <<parameters.delivery_manifest>>
- or:
- equal:
- main
- << pipeline.git.branch >>
- equal:
- aspect-build/test-delivery
- << pipeline.git.branch >>
- matches:
pattern: ^main$
value: << pipeline.git.branch >>
- matches:
pattern: ^aspect-build\/test-delivery$
value: << pipeline.git.branch >>
steps:
- run:
command: rosetta run delivery_manifest --workspace << parameters.workspace
Expand Down Expand Up @@ -640,12 +640,12 @@ jobs:
and:
- <<parameters.delivery_manifest>>
- or:
- equal:
- main
- << pipeline.git.branch >>
- equal:
- aspect-build/test-delivery
- << pipeline.git.branch >>
- matches:
pattern: ^main$
value: << pipeline.git.branch >>
- matches:
pattern: ^aspect-build\/test-delivery$
value: << pipeline.git.branch >>
steps:
- run:
command: rosetta run delivery_manifest --workspace << parameters.workspace
Expand Down
Loading