mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 01:45:05 +08:00
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
# Use Docker file from https://hub.docker.com/r/runmymind/docker-android-sdk
|
|
# Last docker plugin version can be found here:
|
|
# https://github.com/buildkite-plugins/docker-buildkite-plugin/releases
|
|
# We propagate the environment to the container (sse https://github.com/buildkite-plugins/docker-buildkite-plugin#propagate-environment-optional-boolean)
|
|
|
|
# Build debug version of the RiotX application, from the develop branch and the features branches
|
|
|
|
steps:
|
|
- label: "Assemble GPlay Debug version"
|
|
agents:
|
|
# We use a medium sized instance instead of the normal small ones because
|
|
# gradle build is long
|
|
queue: "medium"
|
|
commands:
|
|
- "./gradlew clean lintGplayRelease assembleGplayDebug --stacktrace"
|
|
artifact_paths:
|
|
- "vector/build/outputs/apk/gplay/debug/*.apk"
|
|
branches: "!master"
|
|
plugins:
|
|
- docker#v3.1.0:
|
|
image: "runmymind/docker-android-sdk"
|
|
propagate-environment: true
|
|
|
|
- label: "Assemble FDroid Debug version"
|
|
agents:
|
|
# We use a medium sized instance instead of the normal small ones because
|
|
# gradle build is long
|
|
queue: "medium"
|
|
commands:
|
|
- "./gradlew clean lintFdroidRelease assembleFdroidDebug --stacktrace"
|
|
artifact_paths:
|
|
- "vector/build/outputs/apk/fdroid/debug/*.apk"
|
|
branches: "!master"
|
|
plugins:
|
|
- docker#v3.1.0:
|
|
image: "runmymind/docker-android-sdk"
|
|
propagate-environment: true
|
|
|
|
- label: "Build Google Play unsigned APK"
|
|
agents:
|
|
# We use a medium sized instance instead of the normal small ones because
|
|
# gradle build is long
|
|
queue: "medium"
|
|
commands:
|
|
- "./gradlew clean assembleGplayRelease --stacktrace"
|
|
artifact_paths:
|
|
- "vector/build/outputs/apk/gplay/release/*.apk"
|
|
branches: "master"
|
|
plugins:
|
|
- docker#v3.1.0:
|
|
image: "runmymind/docker-android-sdk"
|
|
propagate-environment: true
|
|
|
|
# Code quality
|
|
|
|
- label: "Code quality"
|
|
command:
|
|
- "./tools/check/check_code_quality.sh"
|
|
- "curl -sSLO https://github.com/pinterest/ktlint/releases/download/0.34.2/ktlint && chmod a+x ktlint"
|
|
- "./ktlint --android -v"
|