diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b46b34492..83e5c3322 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -131,7 +131,7 @@ build_tools: - echo $SYN_VCS_BASHRC; source $SYN_VCS_BASHRC .simu_after_script: &simu_after_script - - for i in $(find verif/sim/out*/[vq]*_sim -type f \( -name "*.csv" -o -name "*.iss" -o name "*.yaml" \)) ; do head -10000 $i > artifacts/logs/$(basename $i).head ; done + - for i in $(find verif/sim/out*/[vq]*_sim -type f \( -name "*.csv" -o -name "*.iss" -o -name "*.yaml" \)) ; do head -10000 $i > artifacts/logs/$(basename $i).head ; done - head -10000 verif/sim/logfile.log > artifacts/logs/logfile.log.head - if [ -n "$SPIKE_TANDEM" ]; then python3 .gitlab-ci/scripts/report_tandem.py verif/sim/out*/"$DV_SIMULATORS"_sim; else python3 .gitlab-ci/scripts/report_simu.py verif/sim/logfile.log; fi diff --git a/.gitlab-ci/scripts/report_tandem.py b/.gitlab-ci/scripts/report_tandem.py index afbafb021..a19b2aaed 100644 --- a/.gitlab-ci/scripts/report_tandem.py +++ b/.gitlab-ci/scripts/report_tandem.py @@ -89,7 +89,7 @@ def add_test_row(report_file, metrics_table, with_logs): def report(metrics_table, passed_test_count, total_test_count): report = report_builder.Report(f'{passed_test_count}/{total_test_count}') report.add_metric(metrics_table) - report.dump("bjr") + report.dump() return not report.failed