Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanghay/android-ci-jdk11
Android CI JDK 11 Docker Image
https://github.com/seanghay/android-ci-jdk11
android android-ci gitlab-ci
Last synced: about 1 month ago
JSON representation
Android CI JDK 11 Docker Image
- Host: GitHub
- URL: https://github.com/seanghay/android-ci-jdk11
- Owner: seanghay
- License: apache-2.0
- Created: 2021-09-11T11:10:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T10:02:35.000Z (over 2 years ago)
- Last Synced: 2023-03-03T22:04:49.754Z (almost 2 years ago)
- Topics: android, android-ci, gitlab-ci
- Language: Dockerfile
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Android CI JDK 11 Docker Image
[![Publish Docker Image](https://github.com/seanghay/android-ci-jdk11/actions/workflows/publish.yml/badge.svg)](https://github.com/seanghay/android-ci-jdk11/actions/workflows/publish.yml)
- Android Gradle Plugin 7.0
- API 30
- Node.js 14 preinstalled## Docker
```bash
docker pull ghcr.io/seanghay/android-ci-jdk11:latest
```## GitLab CI/CD
```yml
image: ghcr.io/seanghay/android-ci-jdk11:latestbefore_script:
- chmod +x ./gradlewstages:
- 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
```