From 60cd19db02d21a607b5a505ec0ab59a323904041 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 14 Apr 2021 10:07:30 +0200 Subject: [PATCH] gitlab-ci: `fdroid build` uses --test to keep APKs that fail reproducing https://gitlab.com/fdroid/fdroiddata/-/merge_requests/5690#note_551241963 https://gitlab.com/fdroid/fdroidserver/-/merge_requests/904 --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2be29c6a6b..f169ead870 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -153,6 +153,7 @@ fdroid build: name: "${CI_PROJECT_PATH}_${CI_JOB_STAGE}_${CI_COMMIT_REF_NAME}_${CI_COMMIT_SHA}" paths: - unsigned/ + - tmp/ when: always expire_in: 1 month except: @@ -227,7 +228,7 @@ fdroid build: ./tools/setup-ndk-per-build.py $build $VAGRANT_HOME/android-ndk; chown -R vagrant $VAGRANT_HOME; $fdroid fetchsrclibs $build --verbose; - $fdroid build --verbose --scan-binary --on-server --no-tarball $build; + $fdroid build --verbose --test --scan-binary --on-server --no-tarball $build; done