commit
f9c1c2cb8a
@ -1,44 +1,21 @@ |
|||||||
image: openjdk:8-jdk |
image: jangrewe/gitlab-ci-android |
||||||
|
|
||||||
variables: |
stages: |
||||||
ANDROID_COMPILE_SDK: "28" |
- build |
||||||
ANDROID_BUILD_TOOLS: "28.0.3" |
|
||||||
ANDROID_SDK_TOOLS: "4333796" |
|
||||||
|
|
||||||
before_script: |
before_script: |
||||||
- apt-get --quiet update --yes |
- export GRADLE_USER_HOME=$(pwd)/.gradle |
||||||
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1 |
- chmod +x ./gradlew |
||||||
- wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_TOOLS}.zip |
|
||||||
- unzip -d android-sdk-linux android-sdk.zip |
|
||||||
- echo y | android-sdk-linux/tools/bin/sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" >/dev/null |
|
||||||
- echo y | android-sdk-linux/tools/bin/sdkmanager "platform-tools" >/dev/null |
|
||||||
- echo y | android-sdk-linux/tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" >/dev/null |
|
||||||
- export ANDROID_HOME=$PWD/android-sdk-linux |
|
||||||
- export PATH=$PATH:$PWD/android-sdk-linux/platform-tools/ |
|
||||||
- chmod +x ./gradlew |
|
||||||
# temporarily disable checking for EPIPE error and use yes to accept all licenses |
|
||||||
- set +o pipefail |
|
||||||
- yes | android-sdk-linux/tools/bin/sdkmanager --licenses |
|
||||||
- set -o pipefail |
|
||||||
|
|
||||||
stages: |
cache: |
||||||
- build |
key: ${CI_PROJECT_ID} |
||||||
- test |
paths: |
||||||
|
- .gradle/ |
||||||
|
|
||||||
lintDebug: |
build: |
||||||
stage: build |
stage: build |
||||||
script: |
script: |
||||||
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint |
- ./gradlew assembleDebug |
||||||
|
|
||||||
assembleDebug: |
|
||||||
stage: build |
|
||||||
script: |
|
||||||
- ./gradlew assembleDebug |
|
||||||
artifacts: |
artifacts: |
||||||
paths: |
paths: |
||||||
- app/build/outputs/ |
- app/build/outputs/apk/app-debug.apk |
||||||
|
|
||||||
unitTests: |
|
||||||
stage: test |
|
||||||
script: |
|
||||||
- ./gradlew -Pci --console=plain :app:testDebug |
|
||||||
Loading…
Reference in new issue