-
Notifications
You must be signed in to change notification settings - Fork 224
/
bootstrap.sh
executable file
·165 lines (149 loc) · 5.15 KB
/
bootstrap.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/env bash
# Usage: ./bootstrap.sh <full|fast|check|clean>"
# full: Bootstrap the repo from scratch.
# fast: Bootstrap the repo using CI cache where possible to save time building.
# check: Check required toolchains and versions are installed.
# clean: Force a complete clean of the repo. Erases untracked files, be careful!
set -eu
if [ "$(uname)" == "Darwin" ]; then
shopt -s expand_aliases
alias clang++-16="clang++"
fi
cd "$(dirname "$0")"
CMD=${1:-}
YELLOW="\033[93m"
RED="\033[31m"
BOLD="\033[1m"
RESET="\033[0m"
# setup env
export PATH="$PATH:$(git rev-parse --show-toplevel)/build-system/scripts"
function encourage_dev_container {
echo -e "${BOLD}${RED}ERROR: Toolchain incompatability. We encourage use of our dev container. See build-images/README.md.${RESET}"
}
# Checks for required utilities, toolchains and their versions.
# Developers should probably use the dev container in /build-images to ensure the smoothest experience.
function check_toolchains {
# Check for various required utilities.
for util in jq parallel awk git curl; do
if ! command -v $util > /dev/null; then
encourage_dev_container
echo "Utility $util not found."
exit 1
fi
done
# Check cmake version.
CMAKE_MIN_VERSION="3.24"
CMAKE_INSTALLED_VERSION=$(cmake --version | head -n1 | awk '{print $3}')
if [[ "$(printf '%s\n' "$CMAKE_MIN_VERSION" "$CMAKE_INSTALLED_VERSION" | sort -V | head -n1)" != "$CMAKE_MIN_VERSION" ]]; then
encourage_dev_container
echo "Minimum cmake version 3.24 not found."
exit 1
fi
# Check clang version.
if ! clang++-16 --version > /dev/null; then
encourage_dev_container
echo "clang 16 not installed."
echo "Installation: sudo apt install clang-16"
exit 1
fi
# Check rust version.
if ! rustup show | grep "1.74" > /dev/null; then
encourage_dev_container
echo "Rust version 1.74 not installed."
echo "Installation:"
echo " curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.74.1"
exit 1
fi
# Check wasi-sdk version.
if ! cat /opt/wasi-sdk/VERSION 2> /dev/null | grep 22.0 > /dev/null; then
encourage_dev_container
echo "wasi-sdk-22 not found at /opt/wasi-sdk."
echo "Use dev container, build from source, or you can install linux x86 version with:"
echo " curl -s -L https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-22/wasi-sdk-22.0-linux.tar.gz | tar zxf - && sudo mv wasi-sdk-22.0 /opt/wasi-sdk"
exit 1
fi
# Check foundry version.
for tool in forge anvil; do
if ! $tool --version 2> /dev/null | grep 25f24e6 > /dev/null; then
encourage_dev_container
echo "$tool not in PATH or incorrect version (requires 25f24e677a6a32a62512ad4f561995589ac2c7dc)."
echo "Installation: https://book.getfoundry.sh/getting-started/installation"
echo " curl -L https://foundry.paradigm.xyz | bash"
echo " foundryup -v nightly-25f24e677a6a32a62512ad4f561995589ac2c7dc"
exit 1
fi
done
# Check Node.js version.
NODE_MIN_VERSION="18.19.0"
NODE_INSTALLED_VERSION=$(node --version | cut -d 'v' -f 2)
if [[ "$(printf '%s\n' "$NODE_MIN_VERSION" "$NODE_INSTALLED_VERSION" | sort -V | head -n1)" != "$NODE_MIN_VERSION" ]]; then
encourage_dev_container
echo "Minimum Node.js version 18.19.0 not found."
echo "Installation: nvm install 18"
exit 1
fi
# Check for required npm globals.
for util in yarn solhint; do
if ! command -v $util > /dev/null; then
encourage_dev_container
echo "$util not found."
echo "Installation: npm install --global $util"
exit 1
fi
done
}
if [ "$CMD" = "clean" ]; then
echo "WARNING: This will erase *all* untracked files, including hooks and submodules."
echo -n "Continue? [y/n] "
read user_input
if [[ ! "$user_input" =~ ^[yY](es)?$ ]]; then
echo "Exiting without cleaning"
exit 1
fi
# Remove hooks and submodules.
rm -rf .git/hooks/*
rm -rf .git/modules/*
for SUBMODULE in $(git config --file .gitmodules --get-regexp path | awk '{print $2}'); do
rm -rf $SUBMODULE
done
# Remove all untracked files, directories, nested repos, and .gitignore files.
git clean -ffdx
echo "Cleaning complete"
exit 0
elif [ "$CMD" = "full" ]; then
echo -e "${BOLD}${YELLOW}WARNING: Performing a full bootstrap. Consider leveraging './bootstrap.sh fast' to use CI cache.${RESET}"
echo
elif [ "$CMD" = "fast" ]; then
export USE_CACHE=1
elif [ "$CMD" = "check" ]; then
check_toolchains
echo "Toolchains look good! 🎉"
exit 0
else
echo "usage: $0 <full|fast|check|clean>"
exit 1
fi
# Install pre-commit git hooks.
HOOKS_DIR=$(git rev-parse --git-path hooks)
echo "(cd barretenberg/cpp && ./format.sh staged)" >$HOOKS_DIR/pre-commit
chmod +x $HOOKS_DIR/pre-commit
git submodule update --init --recursive
check_toolchains
PROJECTS=(
barretenberg
noir
l1-contracts
avm-transpiler
noir-projects
yarn-project
)
# Build projects locally
for project in "${PROJECTS[@]}"; do
echo "**************************************"
echo -e "\033[1mBootstrapping $project...\033[0m"
echo "**************************************"
echo
(cd $project && ./bootstrap.sh)
echo
echo
done