Sign inSign up

wuyougan/gitlab-ci-android-sdk-with-ndk

By wuyougan

Updated over 9 years ago

gitlab runner for android sdk and ndk.

Image
1

1.5K

wuyougan/gitlab-ci-android-sdk-with-ndk repository overview

.gitlab-ci.yml

在 Android Studio 工程根目录中添加 .gitlab-ci.yml 文件,内容如下:

image: wuyougan/gitlab-ci-android-sdk-with-ndk:latest

stages:
- build

before_script:
- chmod +x ./gradlew

cache:
  key: ${CI_PROJECT_ID}
  paths:
  - .gradle/

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

Tag summary

Content type

Image

Digest

Size

4.4 GB

Last updated

over 9 years ago

docker pull wuyougan/gitlab-ci-android-sdk-with-ndk