mirror of
https://github.com/whyorean/AuroraStore.git
synced 2026-06-12 01:38:35 -04:00
52 lines
970 B
YAML
52 lines
970 B
YAML
image: jangrewe/gitlab-ci-android
|
|
|
|
before_script:
|
|
- export GRADLE_USER_HOME=$(pwd)/.gradle
|
|
- chmod +x ./gradlew
|
|
|
|
cache:
|
|
key: ${CI_PROJECT_ID}
|
|
paths:
|
|
- .gradle/
|
|
|
|
stages:
|
|
- build
|
|
# - test
|
|
- notify
|
|
|
|
# lintDebug:
|
|
# stage: build
|
|
# script:
|
|
# - ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
|
|
|
assembleDebug:
|
|
stage: build
|
|
script:
|
|
- script -c "bash -x ci-notify.sh --build" > ci-logs.log
|
|
- ./gradlew assembleDebug
|
|
artifacts:
|
|
paths:
|
|
- app/build/outputs/
|
|
- ci-logs.log
|
|
|
|
# testDebug:
|
|
# stage: test
|
|
# script:
|
|
# - ./gradlew -Pci --console=plain :app:testDebug
|
|
|
|
# Once build finished or failed, notify using Telegram
|
|
notifyTelegram:
|
|
stage: notify
|
|
script:
|
|
- script -c "bash -x ci-notify.sh --notify" > ci-logs.log # build succeeded with apk file attached or failed
|
|
artifacts:
|
|
paths:
|
|
- ci-logs.log
|
|
|
|
# if all build fails send log
|
|
sendLogs:
|
|
stage: notify
|
|
script:
|
|
- sh ci-notify.sh --logs
|
|
when: on_failure
|
|
|