This commit is contained in:
Thomas 2020-01-26 09:11:13 +01:00
parent b3cffce6ff
commit d1e079b5fd
1 changed files with 42 additions and 0 deletions

42
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,42 @@
image: hatsoftwares/mastalab-ci:latest
before_script:
- export ANDROID_HOME=/opt/android-sdk-linux
- export PATH=$PATH:/opt/android-sdk-linux/platform-tools/
- chmod +x gradlew
stages:
- build-and-test
- tag
- toot
.no-upload: &no-upload
stage: build-and-test
retry: 2
assembleDebug:
<<: *no-upload
cache:
key: "${CI_COMMIT_TAG}"
paths:
- app/build/outputs/apk/debug/app-debug.apk
policy: push
script:
- ./gradlew assembleDebug
lintDebug:
<<: *no-upload
script:
- ./gradlew -Pci --console=plain :app:lint -PbuildDir=lint
except:
- tags
debugTests:
<<: *no-upload
script:
- ./gradlew -Pci --console=plain :app:test
except:
- tags