From b240fd22c93f45d862ee7e07c6f5bd6f7eea6903 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 4 Aug 2025 11:14:22 +0200 Subject: [PATCH 1/4] review needs dependencies --- main-basop.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main-basop.yml b/main-basop.yml index 7ce1ffc..33316d7 100644 --- a/main-basop.yml +++ b/main-basop.yml @@ -1563,7 +1563,7 @@ lc3-wrapper-unit-test: extends: - .test-job-linux - .rules-merge-request-no-draft - needs: ["build-codec-linux-make"] + needs: ["build-codec-linux-cmake"] stage: test script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh @@ -1611,7 +1611,7 @@ renderer-asan: extends: - .test-job-linux - .rules-merge-request-to-float-ref-no-draft - needs: ["build-codec-linux-make"] + needs: ["build-codec-linux-cmake"] stage: test script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh @@ -1638,7 +1638,7 @@ renderer-msan: extends: - .test-job-linux - .rules-merge-request-to-float-ref-no-draft - needs: ["build-codec-linux-make"] + needs: ["build-codec-linux-cmake"] stage: test tags: - ivas-basop-linux @@ -1667,7 +1667,7 @@ renderer-usan: extends: - .test-job-linux - .rules-merge-request-to-float-ref-no-draft - needs: ["build-codec-linux-make"] + needs: ["build-codec-linux-cmake"] stage: test tags: - ivas-basop-linux -- GitLab From abfe3c267acdba840e3fc0c3328e703f4d516d80 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 4 Aug 2025 11:15:50 +0200 Subject: [PATCH 2/4] fix typo in tags --- main-basop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main-basop.yml b/main-basop.yml index 33316d7..1c84898 100644 --- a/main-basop.yml +++ b/main-basop.yml @@ -1767,7 +1767,7 @@ renderer-usan: extends: - .sanitizer-selftest-on-mr tags: - - ivas-basop--linux + - ivas-basop-linux before_script: - CLANG_NUM=2 - SELFTEST_SANITY_TIMEOUT=180 @@ -1780,7 +1780,7 @@ renderer-usan: extends: - .sanitizer-selftest-on-mr tags: - - ivas-basop--linux + - ivas-basop-linux before_script: - CLANG_NUM=3 - SELFTEST_SANITY_TIMEOUT=180 -- GitLab From 5755c6041b5e0732af7608ee02af88081a62f03e Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 4 Aug 2025 11:16:59 +0200 Subject: [PATCH 3/4] change order of stages --- main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.yml b/main.yml index 16d4c90..81295f0 100644 --- a/main.yml +++ b/main.yml @@ -16,9 +16,9 @@ stages: - prevalidate - build # only in basop + - compare + # only in basop - check-be - test - # only in basop - - compare - postvalidate - deploy -- GitLab From 8a6042cd8e01a69990b5e5cb4adc8b51c94eb4b4 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 4 Aug 2025 12:46:03 +0200 Subject: [PATCH 4/4] adjust some timeout values --- main-basop.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main-basop.yml b/main-basop.yml index 1c84898..b22af90 100644 --- a/main-basop.yml +++ b/main-basop.yml @@ -368,7 +368,7 @@ workflow: extends: - .check-be-job stage: check-be - timeout: "300 minutes" + timeout: "60 minutes" variables: XML_REPORT: "report--$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA.xml" HTML_REPORT: "report--$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA.html" @@ -922,7 +922,7 @@ build-codec-linux-make: when: never extends: - .build-job-linux - timeout: "100 minutes" + timeout: "10 minutes" script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/activate-Werror-linux.sh @@ -962,7 +962,7 @@ build-codec-linux-instrumented-make: when: never extends: - .build-job-linux - timeout: "100 minutes" + timeout: "12 minutes" script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/basop/update-scripts-repo.sh @@ -983,7 +983,7 @@ build-codec-sanitizers-linux: when: never extends: - .build-job-linux - timeout: "100 minutes" + timeout: "10 minutes" script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/basop/update-scripts-repo.sh @@ -1002,7 +1002,7 @@ build-codec-linux-debugging-make: when: never extends: - .build-job-linux - timeout: "100 minutes" + timeout: "10 minutes" variables: BUILD_WITH_DEBUG_MODE_INFO: "true" script: @@ -2231,7 +2231,7 @@ be-2-evs-26444: - be-2-evs-basop stage: test needs: ["build-codec-linux-make"] - timeout: "120 minutes" # To be revisited + timeout: "30 minutes" script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/basop/update-scripts-repo.sh -- GitLab