mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-13 22:40:28 -06:00
29 lines
441 B
YAML
29 lines
441 B
YAML
|
image: registry.gitlab.com/showcheap/android-ci:T24-B25.0.1
|
||
|
|
||
|
before_script:
|
||
|
- export GRADLE_USER_HOME=`pwd`/.gradle
|
||
|
- chmod +x ./gradlew
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- .gradle/wrapper
|
||
|
- .gradle/caches
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- ./gradlew assembleDebug
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- app/build/outputs/
|
||
|
|
||
|
unitTests:
|
||
|
stage: test
|
||
|
script:
|
||
|
- ./gradlew test
|
||
|
|
||
|
functionalTests:
|
||
|
stage: test
|
||
|
script:
|
||
|
- ./gradlew check
|