forked from dipdup-io/stone-packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
42 lines (27 loc) · 1.19 KB
/
build.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
#!/bin/bash
# Fix dependencies
set -o xtrace
set -e
os=$(uname | tr '[:upper:]' '[:lower:]')
arch=$(uname -m | sed s/aarch64/arm64/ | sed s/x86_64/amd64/)
if [ "$os" == "linux" ]; then
export DEBIAN_FRONTEND=noninteractive
sudo apt-get install -y libtinfo5 libdw-dev libgmp3-dev
pip install cpplint pytest numpy sympy==1.12.1 cairo-lang==0.12.0
wget "https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-$os-$arch"
chmod 755 "bazelisk-$os-$arch"
sudo mv "bazelisk-$os-$arch" /bin/bazelisk
elif [ "$os" == "darwin" ]; then
brew install gmp
python3 -m pip install cpplint pytest numpy sympy==1.12.1 cairo-lang==0.12.0 --break-system-packages
else
echo "$os/$arch is not supported"
exit 1
fi
git clone https://github.com/baking-bad/stone-prover.git /tmp/stone-prover
cd /tmp/stone-prover || exit
bazelisk build --cpu=$arch //...
bazelisk test --cpu=$arch //...
# Create symbolic links for cpu_air_prover and cpu_air_verifier
ln -s /tmp/stone-prover/build/bazelbin/src/starkware/main/cpu/cpu_air_prover /usr/local/bin/cpu_air_prover
ln -s /tmp/stone-prover/build/bazelbin/src/starkware/main/cpu/cpu_air_verifier /usr/local/bin/cpu_air_verifier