Skip to content

Commit 7768ff8

Browse files
authored
fix: move helm lint to build (#13532)
Make helm lint follow the idiomatic bootstrap pattern
1 parent 048dfed commit 7768ff8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ function build {
199199
playground
200200
# docs
201201
release-image
202+
spartan
202203
aztec-up
203204
)
204205

@@ -319,7 +320,6 @@ case "$cmd" in
319320
;;
320321
"ci")
321322
build
322-
./spartan/bootstrap.sh lint
323323
if ! semver check $REF_NAME; then
324324
test
325325
bench

spartan/bootstrap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ hash=$(hash_str $(cache_content_hash .rebuild_patterns) $(../yarn-project/bootst
77

88
flock scripts/logs/install_deps.lock scripts/install_deps.sh >&2
99

10-
function lint {
11-
helm lint ./aztec-network/
10+
function build {
11+
denoise "helm lint ./aztec-network/"
1212
}
1313

1414
function network_shaping {
@@ -119,7 +119,7 @@ case "$cmd" in
119119
"hash")
120120
echo $hash
121121
;;
122-
test|test_cmds|gke|lint)
122+
test|test_cmds|gke|build)
123123
$cmd
124124
;;
125125
"test-kind-smoke")

0 commit comments

Comments
 (0)