From a80aa688f0cfd0bee2425353fa7b4376c42d18f8 Mon Sep 17 00:00:00 2001 From: knj Date: Wed, 30 Aug 2023 09:47:39 +0200 Subject: [PATCH 1/2] add update-ltv-repo yaml anchor to smoke test --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 079d8235e7..1a58ec7759 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -326,9 +326,11 @@ codec-smoke-test: - .rules-merge-request timeout: "10 minutes" stage: test - needs: ["build-codec-linux-cmake", "build-codec-linux-make", "build-codec-instrumented-linux", "build-codec-sanitizers-linux"] + needs: ["build-codec-linux-cmake", "build-codec-linux-make", "build-codec-instrumented-linux", "build-codec-sanitizers-linux"] script: - *print-common-info + # LTV update needed as ltv ISM metadata files are used + - *update-ltv-repo - bash ci/smoke_test.sh ### analyze for failures - if ! [ -s smoke_test_output.txt ] || ! [ -s smoke_test_output_plc.txt ] || ! [ -s smoke_test_output_jbm_noEXT.txt ] || ! [ -s smoke_test_output_hrtf.txt ]; then echo "Error in smoke test"; exit 1; fi -- GitLab From 2b752bdac6d28260700b248d357c3d8a734288db Mon Sep 17 00:00:00 2001 From: knj Date: Wed, 30 Aug 2023 09:54:44 +0200 Subject: [PATCH 2/2] also add anchor in coverage job where smoke test is run too --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1a58ec7759..8eec9359fd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1293,6 +1293,7 @@ coverage-test-on-main-scheduled: timeout: 2 hours script: - *print-common-info + - *update-ltv-repo - make GCOV=1 -j - cp IVAS_rend IVAS_rend_ref # Copy exec to be able to run renderer script - python3 tests/create_short_testvectors.py -- GitLab