gitlab runner for android sdk and ndk.
1.5K
在 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
Content type
Image
Digest
Size
4.4 GB
Last updated
over 9 years ago
docker pull wuyougan/gitlab-ci-android-sdk-with-ndk