Skip to content

Mooibroek/gitlab-ci-android

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 

Repository files navigation

Docker Image for Build Android

GitLab CI image for building Android apps

This code on repo will automatically build on Docker Hub :

https://hub.docker.com/r/showcheap/gitlab-ci-android/

Example .gitlab-ci.yml file

You can specify tag for target SDK Version (If available, if not PR are welcome)

image: showcheap/gitlab-ci-android:latest

before_script:
    - export GRADLE_USER_HOME=`pwd`/.gradle
    - chmod +x ./gradlew

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

build:
  stage: build
  script:
     - ./gradlew assemble

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

About

GitLab CI image for building Android apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published