blob: 7d2875acd2f1e9071a3f79e24cb76d531664e90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#image: "0xacab.org:4567/leap/bitmask_android:android-sdk"
image: "0xacab.org:4567/leap/gitlab-buildpackage:android"
stages:
- build
before_script:
- git submodule sync --recursive
- git submodule update --init --recursive
build:
stage: build
script:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/
|