Skip to content

Commit

Permalink
ci: disable 'helm dependency build' since the template is already ava…
Browse files Browse the repository at this point in the history
…ilable in the repo
  • Loading branch information
qjoly committed Jun 27, 2023
1 parent a797d60 commit 9222498
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_modified_charts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for chart in "${chart_list[@]}"; do
if [ -f ".no_ci" ]; then
echo "No CI for this chart."
else
helm dependency build
#helm dependency build
helm install $chart_name . --wait --timeout 300s
echo "$chart_name is installed"
helm test $chart_name --logs
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/helm_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ do
if [ -f ".no_ci" ]; then
echo "No CI for this chart."
else
helm dependency build
helm install $d . --wait --timeout 300s
helm test $d
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_modified_charts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ for chart in "${chart_list[@]}"; do
chart_name=$(echo "$chart" | cut -d"/" -f2 )
echo "Chart Name: $chart_name"
cd charts
helm dependency build $chart_name
#helm dependency build $chart_name
helm lint $chart_name
if [ $? -ne 0 ]; then
echo "Error in lint of $chart_name"
Expand Down

0 comments on commit 9222498

Please sign in to comment.