Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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:latest

before_script:
- chmod +x ./gradlew

stages:
- build

cache:
paths:
- .gradle/wrapper
- .gradle/caches

assembleDebug:
stage: build
script:
- ./gradlew assembleDebug
- cp app/build/outputs/apk/debug/app-debug.apk app-debug.apk
artifacts:
paths:
- app-debug.apk

```