blob: 920f65d0cd3e13057fdf210b0dad4fab947196c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# NOTE(@aguestuser|4.23.17):
# - we would prefer 0xacab.org:4567/leap/bitmask_android:android-sdk
# as the build image, but cant do that presently b/c:
# (1) i do not have permissions to create docker repositories in this repo
# (2) we need to add whatever image we use to gitlab ci's whitelist
# or else we get a message like:
# `ERROR: The 0xacab.org:4567/aguestuser/bitmask_android:android-sdk-25 is not present on list of allowed images`
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/
|