Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hantrungkien/android-ci
CI for Android apps on GitLab
https://github.com/hantrungkien/android-ci
android-ci cd ci gitlab-ci
Last synced: 5 days ago
JSON representation
CI for Android apps on GitLab
- Host: GitHub
- URL: https://github.com/hantrungkien/android-ci
- Owner: hantrungkien
- License: gpl-3.0
- Created: 2020-11-25T10:44:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T12:53:20.000Z (about 4 years ago)
- Last Synced: 2024-11-07T14:30:21.707Z (about 2 months ago)
- Topics: android-ci, cd, ci, gitlab-ci
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/hantrungkien/android-ci
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Continous Integration (CI) for Android apps on GitLab
![Docker Pulls](https://img.shields.io/docker/pulls/hantrungkien/android-ci.svg)
![Docker Automated](https://img.shields.io/docker/automated/hantrungkien/android-ci.svg)
![Docker Build](https://img.shields.io/docker/cloud/build/hantrungkien/android-ci.svg)## Sample usages
### GitLab
*.gitlab-ci.yml*```yml
image: hantrungkien/android-ci:latestbefore_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
- mkdir -p $GRADLE_USER_HOME
- chmod +x ./gradlewcache:
key: "$CI_COMMIT_REF_NAME"
paths:
- .gradle/stages:
- build
- testbuild:
stage: build
script:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/apk/unitTests:
stage: test
script:
- ./gradlew test
```