mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
19 lines
528 B
YAML
19 lines
528 B
YAML
default:
|
|
image: "docker.io/abb128/android-build:latest@sha256:8df16e2badb5e42d2f5e3862683c7ff0ebdcc348affe059385e42eebef79302f"
|
|
|
|
stages: # List of stages for jobs, and their order of execution
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
tags:
|
|
- docker
|
|
script:
|
|
- ./setUpKeysCI.sh
|
|
- gradle assembleRelease -s
|
|
- mv build/outputs/apk/release/latinime-release.apk ./LatinIME-release-$CI_COMMIT_SHORT_SHA.apk
|
|
artifacts:
|
|
name: "LatinIME-release-$CI_COMMIT_SHORT_SHA"
|
|
paths:
|
|
- ./*.apk
|
|
when: manual |