From f05eb4a0222f95fdffb28d2628a0e45b532b7376 Mon Sep 17 00:00:00 2001 From: Dmitri Makarov Date: Sat, 24 Dec 2022 11:05:54 -0500 Subject: [PATCH] Temporary increase the build redundancy threshold (#29412) --- ci/test-stable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index 81d0d11556..b65d8d0d88 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -119,7 +119,7 @@ test-stable-sbf) # latest mainbeta release version. solana_program_count=$(grep -c 'solana-program v' cargo.log) rm -f cargo.log - if ((solana_program_count > 10)); then + if ((solana_program_count > 12)); then echo "Regression of build redundancy ${solana_program_count}." echo "Review dependency features that trigger redundant rebuilds of solana-program." exit 1