Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 507 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 507 Bytes

This Repository is moved to Gitlab

https://gitlab.com/showcheap/android-ci

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