17

我想将 GitLab CI 系统用于我的 Android 应用程序 gradle 项目。项目存储库托管在GitLab.com上,因此我想使用 Gitlab Inc. 提供的共享运行器之一。
虽然官方教程提供了 NodeJS 项目运行器配置的示例,并且还有用于 Ruby 项目的共享运行器,但我找不到任何示例,甚至找不到支持 Android 应用程序的运行器。

  • 是否有GitLab.com 提供的共享运行器,它支持开箱即用的 Android 项目(通过指定image: android:4.2.2或类似的方式)?
  • 有没有办法配置GitLab.com 提供的现有共享运行器以支持 Android 项目(通过修改.gitlab-ci.yml文件)?
4

3 回答 3

14

我正在使用这个 docker 镜像来运行 android buildgitlab-ci

更新:

移至 Gitlab 注册表

image: registry.gitlab.com/showcheap/android-ci: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

完整指南可以在这个 Gitlab 存储库中查看: https ://gitlab.com/showcheap/android-ci

如果您的目标 SDK 和构建工具版本未列出,请提出拉取请求或 fork 我的 repo,然后制作您的自定义目标和构建版本。

于 2016-04-13T14:13:16.743 回答
5

这是.gitlab-ci.yml我在我的 android 项目中使用的文件。由于我将其更改为一次安装一个组件,因此它非常稳定。有时无法接受许可证并且构建失败。但这是极少数情况。重要的是您的构建工具与此脚本 ( ) 中的相同,build-tools-23.0.3也许您必须在此处更改脚本。

您可以省略artifacts我使用它来获取 lint 报告的声明。

before_script:
  - apt-get --quiet update --yes
  - apt-get --quiet install --yes wget tar unzip openjdk-7-jdk lib32stdc++6 lib32z1
  - wget --quiet --output-document=android-sdk.tgz https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
  - tar --extract --gzip --file=android-sdk.tgz
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter android-23
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter platform-tools
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter build-tools-23.0.3
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter extra-android-m2repository
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter extra-google-google_play_services
  - echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter extra-google-m2repository
  - wget --quiet --output-document=gradle.zip https://services.gradle.org/distributions/gradle-2.12-bin.zip
  - unzip -q gradle.zip
  - export ANDROID_HOME=$PWD/android-sdk-linux

build:
  script:
    - gradle-2.12/bin/gradle assembleDebug check --stacktrace
  artifacts:
    paths:
    - library/build/outputs/lint-results.html
    - app/build/outputs/lint-results.html
于 2016-03-27T21:16:30.557 回答
-1

更新

根据这篇文章,您需要设置自己的跑步者。

您将在同一篇文章中找到有关构建 Android 应用程序的更多信息。

于 2016-03-11T03:47:11.043 回答