From b13e48c4866c110a36350259b7d67d01314ad0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Tue, 22 Apr 2025 11:38:32 +0200 Subject: [PATCH] Allow pipeline schedule E to complete In the last build, the pipeline almost completed, but the last build timed out at 99% completion of the tests. We don't need a too strict timeout, though, and therefore can just increase it a bit. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 018b273ae6..a35decca5d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1763,7 +1763,7 @@ ltv-msan: - .sanitizer-selftest-ltv rules: - if: $SANITIZER_SCHEDULE_E - timeout: 4 hour + timeout: 4 hours tags: - ivas-linux-fast before_script: @@ -1783,7 +1783,7 @@ ltv-asan: start_in: 4 hours tags: - ivas-linux-fast - timeout: 3 hour + timeout: 4 hours before_script: - CLANG_NUM=2 - SELFTEST_SANITY_TIMEOUT=$TESTCASE_TIMEOUT_LTV_SANITIZERS @@ -1801,7 +1801,7 @@ ltv-usan: start_in: 7 hours tags: - ivas-linux-fast - timeout: 3 hour + timeout: 4 hours before_script: - CLANG_NUM=3 - SELFTEST_SANITY_TIMEOUT=$TESTCASE_TIMEOUT_LTV_SANITIZERS -- GitLab