Add lint for ibex_simple_system to CI

This commit is contained in:
Philipp Wagner 2020-07-03 13:10:40 +01:00 committed by Philipp Wagner
parent a10df87daa
commit 465ea2806c

View file

@ -149,3 +149,20 @@ jobs:
- small
- experimental-maxperf-pmp
- experimental-maxperf-pmp-bmfull
# Run lint on simple system
- bash: |
fusesoc --cores-root . run --target=lint --tool=verilator lowrisc:ibex:ibex_simple_system
if [ $? != 0 ]; then
echo -n "##vso[task.logissue type=error]"
echo "Verilog lint with Verible failed. Run 'fusesoc --cores-root . run --target=lint --tool=verilator lowrisc:ibex:ibex_simple_system' to check and fix all errors."
fi
displayName: Run Verilator lint on simple system
- bash: |
fusesoc --cores-root . run --target=lint --tool=veriblelint lowrisc:ibex:ibex_simple_system
if [ $? != 0 ]; then
echo -n "##vso[task.logissue type=error]"
echo "Verilog lint with Verible failed. Run 'fusesoc --cores-root . run --target=lint --tool=verilator lowrisc:ibex:ibex_simple_system' to check and fix all errors."
fi
displayName: Run Verible lint on simple system