From c3f03ea1e699be24bc4cee25eb21570744a58359 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Thu, 20 Mar 2025 15:13:24 +0100 Subject: [PATCH 1/2] add COMPLEXITY/logs folder to artifacts --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d8b75390e..3cb0ee8e9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1208,6 +1208,7 @@ voip-be-on-merge-request: expire_in: 2 week paths: - $CI_JOB_NAME-public + - COMPLEXITY/logs complexity-stereo-in-stereo-out: extends: -- GitLab From 3b287431515e324589d0f3d96ecb9e3fb03a5c0a Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Thu, 20 Mar 2025 16:02:06 +0100 Subject: [PATCH 2/2] remove log folder b4 running COMPLEXITY check this should avoid archiving any old logs in case not all of them are overwritten (e.g. when new modes are added) --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3cb0ee8e9..5f5539ee1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1198,6 +1198,8 @@ voip-be-on-merge-request: - *update-scripts-repo - *update-ltv-repo - *complexity-measurements-setup + # delete previous jobs logfiles if present (-f flag ensures return calue of 0 even in first run where this folder is not present) + - rm -rf COMPLEXITY/logs - which coan allow_failure: exit_codes: -- GitLab