16 lines
291 B
YAML
16 lines
291 B
YAML
|
variables:
|
||
|
GRADLE_VERSION: "2.14.1"
|
||
|
|
||
|
before_script:
|
||
|
- gradle wrapper --gradle-version ${GRADLE_VERSION} -Dcom.android.build.gradle.overrideVersionCheck=true
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- ./gradlew assembleDebug
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- app/build/outputs/
|