Commit 1f6cfcb1 authored by norvell's avatar norvell
Browse files

Add || true to prevent file comparison to fail job

parent 1d270b4c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -374,9 +374,9 @@ stages:
    - python3 scripts/parse_xml_report.py $XML_REPORT_MAIN $CSV_MAIN

    # If outputs of main and branch are equal, have equal reports and no run errors were encountered, the job will pass.
    - python3 scripts/batch_comp_audio.py --tool pyaudio3dtools -sd tests/dut/sba_bs/raw tests/dut_branch/sba_bs/raw
    - python3 scripts/batch_comp_audio.py --tool pyaudio3dtools -sd tests/dut/sba_bs/raw tests/dut_branch/sba_bs/raw || true
    - diff_sba=$?
    - python3 scripts/batch_comp_audio.py --tool pyaudio3dtools -sd tests/dut/param_file/dec tests/dut_branch/param_file/dec
    - python3 scripts/batch_comp_audio.py --tool pyaudio3dtools -sd tests/dut/param_file/dec tests/dut_branch/param_file/dec || true
    - diff_param=$?
    - diff $CSV_BRANCH $CSV_MAIN
    - diff_report=$?