Loading .gitlab-ci.yml +2 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,8 @@ codec-smoke-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 - 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: paths: - out/logs Loading ci/smoke_test.sh +3 −1 Original line number Diff line number Diff line Loading @@ -6,8 +6,10 @@ if [ ! -d "lib_com" ]; then fi make clean make all -j make all -j 8 # 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 | tee smoke_test_output.txt ./scripts/runIvasCodec.py -p ./scripts/config/ci_linux.json -m $list -U 1 -D="-fec 15" --decoder_only | tee smoke_test_output_plc.txt Loading
.gitlab-ci.yml +2 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,8 @@ codec-smoke-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 - 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: paths: - out/logs Loading
ci/smoke_test.sh +3 −1 Original line number Diff line number Diff line Loading @@ -6,8 +6,10 @@ if [ ! -d "lib_com" ]; then fi make clean make all -j make all -j 8 # 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 | tee smoke_test_output.txt ./scripts/runIvasCodec.py -p ./scripts/config/ci_linux.json -m $list -U 1 -D="-fec 15" --decoder_only | tee smoke_test_output_plc.txt