Skip to content

Commit

Permalink
tring again to figure out why verify is freaking out during the apply
Browse files Browse the repository at this point in the history
  • Loading branch information
nathangeology committed Jun 26, 2024
1 parent 86e68c2 commit fa54474
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
run: |
make toolchain
make install-kwok
@git diff --quiet ||\
{ echo "New file modification detected in the Git working tree. Please check in before commit."; git --no-pager diff --name-only | uniq | awk '{print " - " $$0}'; \
if [ "${CI}" = true ]; then\
exit 1;\
fi;}
KWOK_REPO=kind.local KIND_CLUSTER_NAME=chart-testing make apply-with-kind
- name: ping cluster
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ verify: ## Verify code. Includes codegen, docgen, dependencies, linting, formatt
go vet ./...
cd kwok/charts && helm-docs
golangci-lint run
@git diff ||\
@git diff --quiet ||\
{ echo "New file modification detected in the Git working tree. Please check in before commit."; git --no-pager diff --name-only | uniq | awk '{print " - " $$0}'; \
if [ "${CI}" = true ]; then\
exit 1;\
Expand Down

0 comments on commit fa54474

Please sign in to comment.