cart
07/03/2018, 7:08 PMLucas Ł
07/03/2018, 7:14 PMimage: <http://registry.gitlab.com/XXX|registry.gitlab.com/XXX>
variables:
ANDROID_COMPILE_SDK: "27"
ANDROID_BUILD_TOOLS: "27.0.3"
CI_SERVER: "true"
stages:
- build
- test
- upload
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
build:
stage: build
only:
- master
- gitlab_unit_tests
script:
- chmod +x ./gradlew
- ./gradlew -g /cache --stacktrace app:assembleDevBackendDebug
artifacts:
paths:
- app/build/outputs
tags:
- docker
- multidex
...
cart
07/03/2018, 7:26 PMLucas Ł
07/04/2018, 6:43 AM