From d3156eab7d0f70bf6db769807a401954552d1143 Mon Sep 17 00:00:00 2001 From: norvell Date: Wed, 20 Mar 2024 09:49:27 +0000 Subject: [PATCH] Change artifacts to always use $CI_JOB_NAME --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2aada60ca..9a69a1caf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -239,7 +239,7 @@ stages: exit_codes: - 123 artifacts: - name: "mld--sha-$CI_COMMIT_SHORT_SHA--results" + name: "$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA--results" expire_in: 1 week when: always paths: @@ -274,7 +274,7 @@ stages: - testcase_timeout=300 - python3 -m pytest $SHORT_TEST_SUITE -v --tb=no --update_ref 1 -m create_ref --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout $testcase_timeout --ref_encoder_path ./IVAS_cod_ref --ref_decoder_path ./IVAS_dec artifacts: - name: "ivas-pytest-dec-msan--sha-$CI_COMMIT_SHORT_SHA--results" + name: "$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA--results" when: always expire_in: "2 weeks" paths: @@ -539,7 +539,7 @@ ivas-smoke-test-saturation: - if cat smoke_test_output_hrtf.txt | grep -c "failed"; then echo "Smoke test with external hrtf files failed"; ret_val=1; fi - exit $ret_val artifacts: - name: "ivas-smoke-test-saturation--sha-$CI_COMMIT_SHORT_SHA--results" + name: "$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA--results" expire_in: 1 week when: always paths: @@ -578,7 +578,7 @@ be-2-evs-26444: - exit 0 artifacts: - name: "evs-26444--sha-$CI_COMMIT_SHORT_SHA--results" + name: "$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA--results" expire_in: 1 week when: always paths: -- GitLab