summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c044c673..65ae0a25 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -104,7 +104,7 @@ build:
script:
- ./cleanProject.sh
- ./build_deps.sh >> build_deps.log 2>&1
- - ./gradlew clean assembleDebug --stacktrace >> build.log 2>&1
+ - ./gradlew clean assembleNormalProductionFatDebug --stacktrace >> build.log 2>&1
artifacts:
paths:
- app/build/outputs/
@@ -121,6 +121,7 @@ build_release:
artifacts:
paths:
- app/build/outputs/
+ - currentReleases/
- normalRelease.log
when: always
expire_in: 1 week
@@ -134,6 +135,7 @@ build_fdroid_beta_release:
artifacts:
paths:
- app/build/outputs/
+ - currentReleases/
- normalBeta.log
when: always
expire_in: 1 week
@@ -143,10 +145,11 @@ build_custom_release:
image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest"
stage: build
script:
- - ./prepareForDistribution.sh build -no-tag -custom RiseupVPN >> customRelease.log 2>&1
+ - ./prepareForDistribution.sh build -no-tag -custom >> customRelease.log 2>&1
artifacts:
paths:
- app/build/outputs/
+ - currentReleases/
- customRelease.log
when: always
expire_in: 1 week
@@ -156,10 +159,11 @@ build_fdroid_custom_beta_release:
image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest"
stage: build
script:
- - ./prepareForDistribution.sh build -no-tag -beta -custom RiseupVPN >> customBeta.log 2>&1
+ - ./prepareForDistribution.sh build -no-tag -beta -custom >> customBeta.log 2>&1
artifacts:
paths:
- app/build/outputs/
+ - currentReleases/
- customBeta.log
when: always
expire_in: 1 week