1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-19 23:39:09 -05:00
wulkanowy-mirror/.gitlab-ci.yml

46 lines
903 B
YAML
Raw Normal View History

image: circleci/android:api-27-alpha
2017-04-04 10:49:46 -05:00
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
build:
stage: build
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
2017-04-04 10:49:46 -05:00
script:
- ./gradlew --no-daemon --stacktrace dependencies || true
- ./gradlew --no-daemon --stacktrace assembleDebug
2017-04-05 15:19:59 -05:00
- mv app/build/outputs/apk/app-debug.apk .
2017-04-04 10:49:46 -05:00
artifacts:
2017-04-05 15:19:59 -05:00
name: "${CI_PROJECT_NAME}_${CI_BUILD_REF_NAME}-${CI_BUILD_ID}"
2017-04-04 10:49:46 -05:00
paths:
2017-04-05 15:19:59 -05:00
- app-debug.apk
2017-04-04 10:49:46 -05:00
tests:
2017-04-04 10:49:46 -05:00
stage: test
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
policy: pull
2017-04-04 10:49:46 -05:00
script:
- ./gradlew --no-daemon --stacktrace test
2017-04-07 14:15:42 -05:00
artifacts:
paths:
- app/build/reports/tests
2017-04-04 10:49:46 -05:00
lint:
2017-04-04 10:49:46 -05:00
stage: test
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
policy: pull
2017-04-04 10:49:46 -05:00
script:
- ./gradlew --no-daemon --stacktrace lint
2017-04-07 14:15:42 -05:00
artifacts:
paths:
- app/build/reports