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