Commit 5caba6eb authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch '37-smoke-test-in-merge-request-pipeline-does-not-detect-failures' into 'main'

Fix smoke test not detecting failures

See merge request !18
parents f6630ac6 03056bf0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -85,6 +85,8 @@ codec-smoke-test:
  stage: test
  script:
    - bash ci/smoke_test.sh
    ### analyze for failures
    - if cat smoke_test_output.txt | grep -c "failed"; then echo "Smoke test failed"; exit 1; fi
  artifacts:
    paths:
      - out/logs
+1 −1
Original line number Diff line number Diff line
@@ -10,4 +10,4 @@ make all -j

# get all modes except SBA rate switching (which is broken currently)
list=$(./scripts/runIvasCodec.py -l | grep -v "SBA.*rs")
./scripts/runIvasCodec.py -p ./scripts/config/ci_linux.json -m $list -U 1
./scripts/runIvasCodec.py -p ./scripts/config/ci_linux.json -m $list -U 1 | tee smoke_test_output.txt