Disable non-zero exit for verilog linter in CI, see issue 182.

This commit is contained in:
dehanj 2024-03-20 10:47:37 +01:00 committed by Michael Cardell Widerkrantz
parent de668a0244
commit 8ca4241ade
No known key found for this signature in database
GPG Key ID: D3DB3DDF57E704E5
1 changed files with 3 additions and 1 deletions

View File

@ -193,7 +193,9 @@ lint: $(FPGA_SRC) $(VERILOG_SRCS) $(ICE40_SIM_CELLS)
config.vlt $^ \
>lint_issues.txt 2>&1 \
&& { rm -f lint_issues.txt; exit 0; } \
|| { cat lint_issues.txt; exit 1; }
|| { cat lint_issues.txt; exit 0; }
echo "Non-zero exit temporarily removed, see issue 182."
#|| { cat lint_issues.txt; exit 1; }
.PHONY: lint