wmontwe / docker-alpine-android

Docker image for building Android based on Alpine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gitlab-ci-android

GitLab CI docker image for building Android Apps

This image is based on openjdk:8-jdk

Example .gitlab-ci.yml

image: wmontwe/gitlab-ci-android

stages:
  - build
  - test

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

unitTests:
  stage: test
  script:
    - ./gradlew test

About

Docker image for building Android based on Alpine

License:MIT License


Languages

Language:Dockerfile 96.8%Language:Shell 3.2%