CI: Show exact command to run Verilator lint

The options were missing, leading to an incomplete command, which makes
it hard to reproduce lint failures locally.
This commit is contained in:
Philipp Wagner 2020-07-03 12:07:44 +01:00 committed by Philipp Wagner
parent 18db64f6fa
commit b807879aca

View file

@ -17,7 +17,7 @@ steps:
fusesoc --cores-root . run --target=lint lowrisc:ibex:ibex_core_tracing $IBEX_CONFIG_OPTS
if [ $? != 0 ]; then
echo -n "##vso[task.logissue type=error]"
echo "Verilog lint failed. Run 'fusesoc --cores-root . run --target=lint lowrisc:ibex:ibex_core_tracing' to check and fix all errors."
echo "Verilog lint failed. Run 'fusesoc --cores-root . run --target=lint --tool=verilator lowrisc:ibex:ibex_core_tracing $IBEX_CONFIG_OPTS' to check and fix all errors."
exit 1
fi
displayName: Lint Verilog source files with Verilator for ${{ config }}