-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathbootstrap.sh
executable file
·49 lines (44 loc) · 1.03 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
#!/usr/bin/env bash
source $(git rev-parse --show-toplevel)/ci3/source
function bootstrap_all {
# To run bb we need a crs.
# Download ignition up front to ensure no race conditions at runtime.
[ -n "${SKIP_BB_CRS:-}" ] || ./scripts/download_bb_crs.sh
./bbup/bootstrap.sh $@
./cpp/bootstrap.sh $@
./ts/bootstrap.sh $@
./acir_tests/bootstrap.sh $@
}
function hash {
cache_content_hash "^barretenberg"
}
function bench {
rm -rf bench-out && mkdir -p bench-out
local hash=$(hash)
if cache_download barretenberg-bench-results-$hash.tar.gz; then
return
fi
bootstrap_all bench
./scripts/combine_benchmarks.py \
./cpp/bench-out/*.json \
./acir_tests/bench-out/*.txt \
> ./bench-out/bb-bench.json
cache_upload barretenberg-bench-results-$hash.tar.gz ./bench-out/bb-bench.json
}
cmd=${1:-}
[ -n "$cmd" ] && shift
case "$cmd" in
hash)
hash
;;
""|clean|ci|fast|test|test_cmds|release)
bootstrap_all $cmd $@
;;
bench)
bench
;;
*)
echo "Unknown command: $cmd"
exit 1
;;
esac