wulkanowy-mod/.gitlab-ci.yml

46 lines
977 B
YAML
Raw Permalink Normal View History

2018-12-06 18:35:02 +01:00
image: circleci/android:api-28-alpha
2017-04-04 15:49:46 +00:00
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
build:
stage: build
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
2017-04-04 15:49:46 +00:00
script:
- ./gradlew --no-daemon --stacktrace dependencies || true
- ./gradlew --no-daemon --stacktrace assembleDebug
2018-04-08 17:14:59 +02:00
- mv app/build/outputs/apk/debug/app-debug.apk .
2017-04-04 15:49:46 +00:00
artifacts:
2017-04-05 20:19:59 +00:00
name: "${CI_PROJECT_NAME}_${CI_BUILD_REF_NAME}-${CI_BUILD_ID}"
2017-04-04 15:49:46 +00:00
paths:
2017-04-05 20:19:59 +00:00
- app-debug.apk
2017-04-04 15:49:46 +00:00
tests:
2017-04-04 15:49:46 +00:00
stage: test
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
policy: pull
2017-04-04 15:49:46 +00:00
script:
2018-04-08 20:16:44 +02:00
- ./gradlew --no-daemon --stacktrace -x fabricGenerateResourcesRelease test
2017-04-07 19:15:42 +00:00
artifacts:
paths:
- app/build/reports/tests
2017-04-04 15:49:46 +00:00
lint:
2017-04-04 15:49:46 +00:00
stage: test
cache:
key: "v1-$CI_COMMIT_REF_NAME"
paths:
- .gradle
policy: pull
2017-04-04 15:49:46 +00:00
script:
2018-04-08 20:16:44 +02:00
- ./gradlew --no-daemon --stacktrace -x fabricGenerateResourcesRelease lint
2017-04-07 19:15:42 +00:00
artifacts:
paths:
- app/build/reports