Commit e7b5353 1 parent fbaa634 commit e7b5353 Copy full SHA for e7b5353
File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ install_bb() {
63
63
local platform=" "
64
64
65
65
# Convert architecture names
66
- if [ " $architecture " = " arm64" ]; then
66
+ if [ " $architecture " = " arm64" ] || [ " $architecture " = " aarch64 " ] ; then
67
67
if version_gte " $version " " 0.77.0" ; then
68
68
architecture=" arm64"
69
69
else
Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ export hash=$(cache_content_hash .rebuild_patterns)
10
10
# Paths are relative to repo root.
11
11
# We append the hash as a comment. This ensures the test harness and cache and skip future runs.
12
12
function test_cmds {
13
- local test_versions=(" 0.72.1" " 0.77.1" )
14
-
15
- for version in ${test_versions[@]} ; do
16
- echo -e " $hash barretenberg/bbup/run_test.sh $version "
17
- done
13
+ if [ $( arch) == " amd64" ]; then
14
+ echo -e " $hash barretenberg/bbup/run_test.sh 0.72.1"
15
+ fi
16
+ echo -e " $hash barretenberg/bbup/run_test.sh 0.77.1"
18
17
}
19
18
20
19
# This is not called in ci. It is just for a developer to run the tests.
@@ -27,7 +26,7 @@ case "$cmd" in
27
26
" clean" )
28
27
git clean -fdx
29
28
;;
30
- " " |" fast" |" full" )
29
+ " " |" fast" |" full" | " bench " )
31
30
;;
32
31
" ci" )
33
32
test
You can’t perform that action at this time.
0 commit comments