Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanghay/android-ci
Docker Image of Android CI for API 29
https://github.com/seanghay/android-ci
android-ci docker
Last synced: about 1 month ago
JSON representation
Docker Image of Android CI for API 29
- Host: GitHub
- URL: https://github.com/seanghay/android-ci
- Owner: seanghay
- License: apache-2.0
- Created: 2020-02-28T17:42:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T09:15:26.000Z (over 2 years ago)
- Last Synced: 2023-03-03T22:04:49.527Z (almost 2 years ago)
- Topics: android-ci, docker
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/seanghay/android-ci
- Size: 9.77 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Docker Image for Android CI
You can use this image for building your Android app within your CI.```sh
docker pull seanghay/android-ci:latest
```-----
## Usage in GitLab CI
```yaml
image: seanghay/android-cibefore_script:
- chmod +x ./gradlew
stages:
- buildcache:
paths:
- .gradle/wrapper
- .gradle/cachesassembleDebug:
stage: build
script:
- ./gradlew assembleDebug
- cp app/build/outputs/apk/debug/app-debug.apk app-debug.apk
artifacts:
paths:
- app-debug.apk
```