From 87b66c08d516e925e5f1f07a6a390e3aecd3628c Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Tue, 13 Feb 2024 11:17:00 -0300 Subject: [PATCH] Always upload artifacts so we have APKs for testing --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e2ecda8e..93af61305 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -80,6 +80,14 @@ app assembleFullRelease test: - libs/**/* script: - ./gradlew :app:assembleFullRelease :app:testFullDebugUnitTest + artifacts: + name: "${CI_PROJECT_PATH}_${CI_JOB_STAGE}_${CI_COMMIT_REF_NAME}_${CI_COMMIT_SHA}" + paths: + - app/build/reports + - app/build/outputs/apk + - libs/*/build/reports + expire_in: 1 week + when: always libs db test: <<: *test-template