-
Notifications
You must be signed in to change notification settings - Fork 375
/
build_manifest.sh
executable file
·29 lines (28 loc) · 1.07 KB
/
build_manifest.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# Source this file to define the PROJECTS variable.
# PROJECT elements have structure PROJECT:WORKING_DIR:DOCKERFILE:REPO.
#
# TODO: Generate this from build_manifest.json
# Commenting out a few projects, as the main use case is now to build the images needed to run end-to-end tests.
# If wanting to just see if docker images actually build, you can temporarily uncomment required projects.
PROJECTS=(
aztec-connect-cpp-x86_64:aztec-connect-cpp:./dockerfiles/Dockerfile.x86_64-linux-clang:aztec-connect-cpp-x86_64-linux-clang
aztec-connect-cpp-wasm:aztec-connect-cpp:./dockerfiles/Dockerfile.wasm-linux-clang:aztec-connect-cpp-wasm-linux-clang
blockchain-vks:blockchain-vks
mainnet-fork:mainnet-fork
contracts:contracts
yarn-project-base:yarn-project
barretenberg.js:yarn-project
blockchain:yarn-project
aztec-dev-cli:yarn-project
halloumi:yarn-project
falafel:yarn-project
kebab:yarn-project
# sdk:yarn-project
hummus:yarn-project
# wallet:yarn-project
end-to-end:yarn-project
# wasabi:yarn-project
# explorer:yarn-project
# faucet:faucet
)