mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-06 10:45:23 +08:00
This commit adds keystore which is shared with community. People freely can use it for creating own Termux app and plugin builds. However, builds signed with such keystore cannot be proven as official. Signed-off-by: Leonid Plyushch <leonid.plyushch@gmail.com>
21 lines
294 B
YAML
21 lines
294 B
YAML
container:
|
|
image: cirrusci/android-sdk:28
|
|
cpu: 4
|
|
memory: 8G
|
|
|
|
task:
|
|
name: tests
|
|
script: ./gradlew test
|
|
|
|
task:
|
|
name: debug-build
|
|
|
|
depends_on:
|
|
- tests
|
|
|
|
build_release_apk_script: |
|
|
./gradlew assembleDebug
|
|
|
|
output_artifacts:
|
|
path: "./app/build/outputs/apk/debug/*.apk"
|