From a121caab35210935526c7a8faf5e4d283d28ba52 Mon Sep 17 00:00:00 2001 From: Philipp Wagner Date: Tue, 1 Oct 2019 15:26:25 +0100 Subject: [PATCH] CI: Also check tracer in lint By linting ibex_core_tracing, we lint all submodules as well: ibex_core and ibex_tracer. --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b6aad7e6..d559403c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -89,10 +89,10 @@ jobs: displayName: Display environment - bash: | - fusesoc --cores-root . run --target=lint lowrisc:ibex:ibex_core + fusesoc --cores-root . run --target=lint lowrisc:ibex:ibex_core_tracing 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' to check and fix all errors." + echo "Verilog lint failed. Run 'fusesoc --cores-root . run --target=lint lowrisc:ibex:ibex_core_tracing' to check and fix all errors." exit 1 fi displayName: Lint Verilog source files with Verilator @@ -118,7 +118,7 @@ jobs: export RISCV_DEVICE=rv32imc fail=0 for isa in rv32i rv32im rv32imc; do - make -C build/riscv-compliance RISCV_ISA=$isa 2>&1 | tee run.log + make -C build/riscv-compliance RISCV_ISA=$isa 2>&1 | tee run.log if [ ${PIPESTATUS[0]} != 0 ]; then echo -n "##vso[task.logissue type=error]" echo "The RISC-V compliance test suite failed for $isa"