[CI] Docker image now has gradle cache for faster CI

This commit is contained in:
Luc Didry 2018-11-25 13:00:45 +01:00
parent f634bcab9f
commit adc8c05014
No known key found for this signature in database
GPG Key ID: EA868E12D0257E3C
1 changed files with 3 additions and 18 deletions

View File

@ -3,25 +3,12 @@ image: hatsoftwares/mastalab-ci:latest
before_script: before_script:
- export ANDROID_HOME=/opt/android-sdk-linux - export ANDROID_HOME=/opt/android-sdk-linux
- export PATH=$PATH:/opt/android-sdk-linux/platform-tools/ - export PATH=$PATH:/opt/android-sdk-linux/platform-tools/
- export GRADLE_USER_HOME=$(pwd)/.gradle/
- chmod +x gradlew - chmod +x gradlew
stages: stages:
- prepare
- build - build
- test - test
prepare:
stage: prepare
script:
- ./gradlew tasks
cache:
key: "$CI_COMMIT_SHA"
paths:
- app/build/outputs/
- .gradle/
policy: push
assembleDebug: assembleDebug:
stage: build stage: build
script: script:
@ -30,7 +17,7 @@ assembleDebug:
key: "$CI_COMMIT_SHA" key: "$CI_COMMIT_SHA"
paths: paths:
- app/build/outputs/ - app/build/outputs/
- .gradle/ policy: push
lintDebug: lintDebug:
stage: test stage: test
@ -38,10 +25,9 @@ lintDebug:
key: "$CI_COMMIT_SHA" key: "$CI_COMMIT_SHA"
paths: paths:
- app/build/outputs/ - app/build/outputs/
- .gradle/
policy: pull policy: pull
script: script:
- ./gradlew --stacktrace -Pci --console=plain :app:lintFdroidDebug -PbuildDir=lint - ./gradlew -Pci --console=plain :app:lintFdroidDebug -PbuildDir=lint
debugTests: debugTests:
stage: test stage: test
@ -49,7 +35,6 @@ debugTests:
key: "$CI_COMMIT_SHA" key: "$CI_COMMIT_SHA"
paths: paths:
- app/build/outputs/ - app/build/outputs/
- .gradle/
policy: pull policy: pull
script: script:
- ./gradlew --stacktrace -Pci --console=plain :app:testFdroidDebugUnitTest - ./gradlew -Pci --console=plain :app:testFdroidDebugUnitTest