From 6bd20ed206fb300a17fc0301b804dc5bcd13f4ba Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Mon, 14 Apr 2025 14:10:30 +0000 Subject: [PATCH 1/2] fix: move helm lint to build --- bootstrap.sh | 2 +- spartan/bootstrap.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index c252bfce3543..3a493859e5fe 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -199,6 +199,7 @@ function build { playground docs release-image + spartan aztec-up ) @@ -319,7 +320,6 @@ case "$cmd" in ;; "ci") build - ./spartan/bootstrap.sh lint if ! semver check $REF_NAME; then test bench diff --git a/spartan/bootstrap.sh b/spartan/bootstrap.sh index bc32e19d1c3f..cc8d208312d9 100755 --- a/spartan/bootstrap.sh +++ b/spartan/bootstrap.sh @@ -7,8 +7,8 @@ hash=$(hash_str $(cache_content_hash .rebuild_patterns) $(../yarn-project/bootst flock scripts/logs/install_deps.lock scripts/install_deps.sh >&2 -function lint { - helm lint ./aztec-network/ +function build { + denoise helm lint ./aztec-network/ } function network_shaping { @@ -119,7 +119,7 @@ case "$cmd" in "hash") echo $hash ;; - test|test_cmds|gke|lint) + test|test_cmds|gke|build) $cmd ;; "test-kind-smoke") From ddd35185a45f35581e6aac9234c5d910b7adfcb8 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Tue, 15 Apr 2025 16:26:27 +0100 Subject: [PATCH 2/2] fix: quote denoised command --- spartan/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spartan/bootstrap.sh b/spartan/bootstrap.sh index cc8d208312d9..81a08dcf27cf 100755 --- a/spartan/bootstrap.sh +++ b/spartan/bootstrap.sh @@ -8,7 +8,7 @@ hash=$(hash_str $(cache_content_hash .rebuild_patterns) $(../yarn-project/bootst flock scripts/logs/install_deps.lock scripts/install_deps.sh >&2 function build { - denoise helm lint ./aztec-network/ + denoise "helm lint ./aztec-network/" } function network_shaping {