From 3984a49a4349bf0ccd35abc6ecd341e9c46e4c27 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Sat, 14 Dec 2024 12:47:46 +0300 Subject: [PATCH 1/2] ci: exclude `*.a` and `*.o` files from artifacts --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 112696c7f56f1..497fb4ab4a76e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,6 +136,8 @@ builder-image: - build-ci # Exclude some less important binaries to reduce the size of the artifacts exclude: + - build-ci/dashcore-$BUILD_TARGET/src/**/*.a + - build-ci/dashcore-$BUILD_TARGET/src/**/*.o - build-ci/dashcore-$BUILD_TARGET/src/bench/bench_dash - build-ci/dashcore-$BUILD_TARGET/src/bench/bench_dash.exe - build-ci/dashcore-$BUILD_TARGET/src/qt/test/test_dash-qt From a191c09cdc6c448d1409a614135c074d7e82fddd Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Thu, 12 Dec 2024 13:44:18 +0300 Subject: [PATCH 2/2] ci: better names for artifacts --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 497fb4ab4a76e..ae521f655b56c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -73,7 +73,7 @@ builder-image: - depends/built - depends/sdk-sources artifacts: - name: depends + name: depends-${CI_JOB_NAME} when: on_success paths: - depends/$HOST @@ -130,7 +130,7 @@ builder-image: paths: - cache/ccache artifacts: - name: binaries + name: build-${BUILD_TARGET} when: always paths: - build-ci