From 35d0c1507b00385ae5838e7b08aad0b14537f932 Mon Sep 17 00:00:00 2001 From: knj Date: Thu, 9 Feb 2023 22:09:46 +0100 Subject: [PATCH 1/7] set default expiration time --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b56bf35e8a..0a1b0239eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,8 @@ variables: default: interruptible: true # Make all jobs by default interruptible + artifacts: + expire_in: 1 week # This sets when pipelines are created. Jobs have more specific rules to restrict them. workflow: -- GitLab From 4518b291dbbb444fdf549c1405e09b69ac13fcec Mon Sep 17 00:00:00 2001 From: knj Date: Thu, 9 Feb 2023 22:19:39 +0100 Subject: [PATCH 2/7] less time for testing --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a1b0239eb..a64352b2bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ variables: default: interruptible: true # Make all jobs by default interruptible artifacts: - expire_in: 1 week + expire_in: 12 hours # for testing only! final time should be higher # This sets when pipelines are created. Jobs have more specific rules to restrict them. workflow: -- GitLab From 0de976008a0907ff3150613ed2436c8119822094 Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 10 Feb 2023 11:32:35 +0100 Subject: [PATCH 3/7] dummy commit to trigger ci -- GitLab From 787cefaa59080079870fcd757dfc285e0308c29f Mon Sep 17 00:00:00 2001 From: knj Date: Mon, 13 Feb 2023 08:26:47 +0100 Subject: [PATCH 4/7] new experiment with artifact expiration time --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a64352b2bf..df31c4c69c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ variables: default: interruptible: true # Make all jobs by default interruptible artifacts: - expire_in: 12 hours # for testing only! final time should be higher + expire_in: 10 min # for testing only! final time should be higher # This sets when pipelines are created. Jobs have more specific rules to restrict them. workflow: @@ -291,6 +291,7 @@ codec-smoke-test: - smoke_test_output_jbm_noEXT.txt - smoke_test_output_hrtf.txt expose_as: "Smoke test results" + expire_in: 10 min # code selftest testvectors with memory-sanitizer binaries codec-msan: -- GitLab From 9920a3b6ac60a9483197b693dec7b67d76ef9179 Mon Sep 17 00:00:00 2001 From: knj Date: Mon, 13 Feb 2023 08:45:12 +0100 Subject: [PATCH 5/7] dummy commit to trigger ci -- GitLab From de5c1253b133fd8116558a162f5d9537870a8035 Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 17 Feb 2023 12:13:43 +0100 Subject: [PATCH 6/7] remove big log chunk from smoke test artifacts --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df31c4c69c..516a2eb3bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -285,7 +285,6 @@ codec-smoke-test: artifacts: name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" paths: - - out/logs/ - smoke_test_output.txt - smoke_test_output_plc.txt - smoke_test_output_jbm_noEXT.txt -- GitLab From aea27871a9440047e1cc1f58adb2567b40c14e41 Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 17 Feb 2023 12:15:23 +0100 Subject: [PATCH 7/7] set default artifact expiration time and explicit one for coverage test --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 516a2eb3bb..1f49285f3c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ variables: default: interruptible: true # Make all jobs by default interruptible artifacts: - expire_in: 10 min # for testing only! final time should be higher + expire_in: 2 weeks # This sets when pipelines are created. Jobs have more specific rules to restrict them. workflow: @@ -290,7 +290,6 @@ codec-smoke-test: - smoke_test_output_jbm_noEXT.txt - smoke_test_output_hrtf.txt expose_as: "Smoke test results" - expire_in: 10 min # code selftest testvectors with memory-sanitizer binaries codec-msan: @@ -930,6 +929,7 @@ coverage-test-on-main-scheduled: artifacts: name: "main-coverage-sha-$CI_COMMIT_SHORT_SHA" when: always + expire_in: 1 week paths: - coverage.info - coverage -- GitLab