Commit 4542ebc7 authored by Jan Kiene's avatar Jan Kiene
Browse files

add 20ms run report to artifacts and do not stop if there was an error

parent 2046bf6d
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1076,8 +1076,8 @@ check-be-between-renderer-framesizes:
    - python3 ci/remove_unsupported_testcases.py $PRM_FILES

    - exit_code=0
    - python3 -m pytest tests/codec_be_on_mr_nonselection --tb=no -v --ref_encoder_path ./IVAS_cod_ref --ref_decoder_path ./IVAS_dec --update_ref 1 || exit_code=$?
    - if [ $exit_code -ne 0 ]; then echo "20 ms framesize run already failed with errors." exit 1; fi
    - python3 -m pytest tests/codec_be_on_mr_nonselection --tb=no -v --ref_encoder_path ./IVAS_cod_ref --ref_decoder_path ./IVAS_dec --update_ref 1 --html=report-20ms.html --self-contained-html --junit-xml=report-junit-20ms.xml || exit_code=$?
    - if [ $exit_code -ne 0 ]; then echo "20 ms framesize run already failed with errors."; fi

    - exit_code5=0
    - exit_code10=0
@@ -1104,10 +1104,13 @@ check-be-between-renderer-framesizes:
      - report-5ms.html
      - report-junit-10ms.xml
      - report-10ms.html
      - report-junit-20ms.xml
      - report-20ms.html
    reports:
      junit:
        - report-junit-5ms.xml
        - report-junit-10ms.xml
        - report-junit-20ms.xml


# ---------------------------------------------------------------