Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
NeerajNagure committed Jul 5, 2024
1 parent c64f5e8 commit af9607a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions hack/update-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ if [[ "${UPDATE_STAGES:-true}" == "true" ]]; then
"${ROOT_DIR}"/hack/update-stages.sh || failed+=(stages)
fi

if [[ "${UPDATE_HELM_CHARTS:-true}" == "true" ]]; then
echo "[*] Update helm charts..."
"${ROOT_DIR}"/hack/update-helm-charts.sh || failed+=(helm-charts)
fi

if [[ "${UPDATE_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
echo "[*] Update testdata..."
"${ROOT_DIR}"/hack/update-testdata.sh || failed+=(testdata)
Expand Down
13 changes: 7 additions & 6 deletions hack/verify-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,14 @@ if [[ "${VERIFY_STAGES:-true}" == "true" ]]; then
"${ROOT_DIR}"/hack/verify-stages.sh || failed+=(stages)
fi

if [[ "${VERIFY_HELM_CHARTS:-true}" == "true" ]]; then
echo "[*] Verifying helm charts..."
"${ROOT_DIR}"/hack/verify-helm-charts.sh || failed+=(helm-charts)
fi




if [[ "${VERIFY_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
echo "[*] Verifying testdata..."
"${ROOT_DIR}"/hack/verify-testdata.sh || failed+=(testdata)
if [[ "${VERIFY_DEPENDENCIES_VERSION:-true}" == "true" ]]; then
echo "[*] Verifying dependencies version..."
"${ROOT_DIR}"/hack/verify-dependencies-version.sh || failed+=(dependencies-version)
fi

if [[ "${VERIFY_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
Expand Down

0 comments on commit af9607a

Please sign in to comment.