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(ci): Deploy sandbox dependencies to npm #1593

Merged
merged 1 commit into from
Aug 16, 2023
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
75 changes: 63 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,7 @@ jobs:
steps:
- *checkout
- *setup_env
# Aztec.js and dependencies
- run:
name: "foundation"
working_directory: foundation
Expand All @@ -963,18 +964,6 @@ jobs:
command: |
deploy_ecr circuits.js
deploy_npm circuits.js
- run:
name: "l1-artifacts"
working_directory: l1-artifacts
command: |
deploy_ecr l1-artifacts
deploy_npm l1-artifacts
- run:
name: "aztec-ethereum"
working_directory: ethereum
command: |
deploy_ecr ethereum
deploy_npm ethereum
- run:
name: "types"
working_directory: types
Expand All @@ -987,6 +976,19 @@ jobs:
command: |
deploy_ecr aztec.js
deploy_npm aztec.js
# Aztec CLI and dependencies
- run:
name: "l1-artifacts"
working_directory: l1-artifacts
command: |
deploy_ecr l1-artifacts
deploy_npm l1-artifacts
- run:
name: "aztec-ethereum"
working_directory: ethereum
command: |
deploy_ecr ethereum
deploy_npm ethereum
- run:
name: "noir-compiler"
working_directory: noir-compiler
Expand All @@ -1005,6 +1007,55 @@ jobs:
command: |
deploy_ecr aztec-cli
deploy_npm aztec-cli
# Aztec Sandbox and dependencies
- run:
name: "aztec-rpc"
working_directory: aztec-rpc
command: |
deploy_ecr aztec-rpc
deploy_npm aztec-rpc
- run:
name: "acir-simulator"
working_directory: acir-simulator
command: |
deploy_ecr acir-simulator
deploy_npm acir-simulator
- run:
name: "archiver"
working_directory: archiver
command: |
deploy_ecr archiver
deploy_npm archiver
- run:
name: "merkle-tree"
working_directory: merkle-tree
command: |
deploy_ecr merkle-tree
deploy_npm merkle-tree
- run:
name: "p2p"
working_directory: p2p
command: |
deploy_ecr p2p
deploy_npm p2p
- run:
name: "sequencer-client"
working_directory: sequencer-client
command: |
deploy_ecr sequencer-client
deploy_npm sequencer-client
- run:
name: "world-state"
working_directory: world-state
command: |
deploy_ecr world-state
deploy_npm world-state
- run:
name: "aztec-node"
working_directory: aztec-node
command: |
deploy_ecr aztec-node
deploy_npm aztec-node
- run:
name: "aztec-sandbox"
working_directory: aztec-sandbox
Expand Down