blob: 7ad57573a3454ccb3da9b840a0429e31f1e49306 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
image: "0xacab.org:4567/leap/gitlab-buildpackage:android"
#image: "gfx2015/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/
|