@$(MAKE) -C test wipe-all
# Note: All python venv consolidated in test/Makefile, test/requirements*.txt
+# Also, this target is used by ci-management/jjb/scripts/vpp/checkstyle-test.sh,
+# thus inclusion of checkstyle-go here to include checkstyle for hs-test
+# in the vpp-checkstyle-verify-*-*-* jobs
.PHONY: test-checkstyle
test-checkstyle:
- $(warning test-checkstyle is deprecated. Running checkstyle-python.")
@$(MAKE) -C test checkstyle-python-all
+ @$(MAKE) -C extras/hs-test checkstyle-go
# Note: All python venv consolidated in test/Makefile, test/requirements*.txt
.PHONY: test-checkstyle-diff
if [ $$status -ne 0 ]; then \
exit $$status; \
elif [ -z "$$output" ]; then \
- echo "*******************************************************************"; \
- echo "Checkstyle OK."; \
- echo "*******************************************************************"; \
+ echo "******************************************************************************"; \
+ echo "* HST Golang Checkstyle OK."; \
+ echo "******************************************************************************"; \
else \
echo "$$output"; \
- echo "*******************************************************************"; \
- echo "Checkstyle failed. Use 'make fixstyle-go' or fix errors manually."; \
- echo "*******************************************************************"; \
+ echo "******************************************************************************"; \
+ echo "* HST Golang Checkstyle FAILED. Use 'make fixstyle-go' or fix errors manually."; \
+ echo "******************************************************************************"; \
exit 1; \
fi