summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2018-09-09 23:44:55 +0200
committercyBerta <cyberta@riseup.net>2018-09-09 23:44:55 +0200
commit153c7a5fb1316becc7bc0c332e7e03bc5aeb1da7 (patch)
tree4c3b3c462f09c23b2c371804ea0c70c20584bdc0 /.gitlab-ci.yml
parent0777285885147b1af87286a9516c937f0e7b8d65 (diff)
add pipeline for custom releases
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91ee6c3d..f489e7b3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -115,4 +115,17 @@ build_release:
artifacts:
paths:
- app/build/outputs/
- when: manual \ No newline at end of file
+ when: manual
+
+ build_custom_release:
+ image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest"
+ stage: build
+ script:
+ - ./cleanProject.sh
+ - ./build_deps.sh
+ - ./gradlew assembleCustomRelease --stacktrace
+ - ./gradlew assembleCustomBeta --stacktrace
+ artifacts:
+ paths:
+ - app/build/outputs/
+ when: manual \ No newline at end of file