Commit 48cef958 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Improve presentation of build artifacts in merge requests.

parent a20eb24b
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -135,8 +135,10 @@ codec-smoke-test:
    - if cat smoke_test_output.txt | grep -c "failed"; then echo "Smoke test without PLC failed"; exit 1; fi
    - if cat smoke_test_output_plc.txt | grep -c "failed"; then echo "Smoke test with PLC failed"; exit 1; fi
  artifacts:
    name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME-results"
    paths:
      - out/logs
    expose_as: 'Smoke test results'


# code selftest testvectors with memory-sanitizer binaries
@@ -249,12 +251,14 @@ self-test-on-merge-request:
    exit_codes:
      - 123
  artifacts:
    name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME-results"
    when: always
    paths:
      - test_output.txt
      - scripts/test/logs
      - scripts/ref/logs
      - report-junit.xml
    expose_as: 'Self test results'
    reports:
      junit: report-junit.xml