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: revert "chore: add arm64 version of aztec-nargo image" #7039

Merged
merged 1 commit into from
Jun 13, 2024
Merged
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
80 changes: 7 additions & 73 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
command: cond_spot_run_build noir-packages 32
aztec_manifest_key: noir-packages

avm-transpiler-x86_64:
avm-transpiler:
docker:
- image: aztecprotocol/alpine-build-image
resource_class: small
Expand All @@ -243,31 +243,7 @@ jobs:
command: cond_spot_run_build avm-transpiler 32
aztec_manifest_key: avm-transpiler

avm-transpiler-arm64:
docker:
- image: aztecprotocol/alpine-build-image
resource_class: small
steps:
- *checkout
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build avm-transpiler 32 arm64
aztec_manifest_key: avm-transpiler

avm-transpiler-ecr-manifest:
machine:
image: default
resource_class: medium
steps:
- *checkout
- *setup_env
- run:
name: "Create ECR manifest"
command: create_ecr_manifest avm-transpiler x86_64,arm64
aztec_manifest_key: avm-transpiler

aztec-nargo-x86_64:
aztec-nargo:
docker:
- image: aztecprotocol/alpine-build-image
resource_class: small
Expand All @@ -279,30 +255,6 @@ jobs:
command: cond_spot_run_build aztec-nargo 32
aztec_manifest_key: aztec-nargo

aztec-nargo-arm64:
docker:
- image: aztecprotocol/alpine-build-image
resource_class: small
steps:
- *checkout
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build aztec-nargo 32 arm64
aztec_manifest_key: aztec-nargo

aztec-nargo-ecr-manifest:
machine:
image: default
resource_class: medium
steps:
- *checkout
- *setup_env
- run:
name: "Create ECR manifest"
command: create_ecr_manifest aztec-nargo x86_64,arm64
aztec_manifest_key: aztec-nargo

l1-contracts:
machine:
image: default
Expand Down Expand Up @@ -558,33 +510,15 @@ workflows:
<<: *defaults

# Transpiler
- avm-transpiler-x86_64:
requires:
- noir-x86_64
<<: *defaults
- avm-transpiler-arm64:
requires:
- noir-arm64
<<: *defaults
- avm-transpiler-ecr-manifest:
- avm-transpiler:
requires:
- avm-transpiler-x86_64
- avm-transpiler-arm64
- noir-ecr-manifest
<<: *defaults

# aztec-nargo (nargo & transpiler)
- aztec-nargo-x86_64:
requires:
- avm-transpiler-x86_64
<<: *defaults
- aztec-nargo-arm64:
requires:
- avm-transpiler-arm64
<<: *defaults
- aztec-nargo-ecr-manifest:
- aztec-nargo:
requires:
- aztec-nargo-x86_64
- aztec-nargo-arm64
- avm-transpiler
<<: *defaults

# Barretenberg
Expand All @@ -602,7 +536,7 @@ workflows:

- noir-projects:
requires:
- avm-transpiler-ecr-manifest
- avm-transpiler
- noir-ecr-manifest
<<: *defaults

Expand Down
Loading