Skip to content

seanghay/android-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

07ee39e · Apr 12, 2020

History

9 Commits
Feb 28, 2020
Feb 28, 2020
Apr 12, 2020
Feb 29, 2020

Repository files navigation

Docker Image for Android CI

You can use this image for building your Android app within your CI.

Pulls
docker pull seanghay/android-ci:latest

Usage in GitLab CI

image: seanghay/android-ci

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
           

Releases

No releases published

Packages

No packages published