This commit is contained in:
blankie 2022-07-12 14:33:05 +07:00
parent fc0ce1beb4
commit 036123ea98
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 29 additions and 2 deletions

View File

@ -1,6 +1,33 @@
image: ubuntu:jammy
# https://gitlab.com/gitlab-org/gitlab-foss/-/blob/9d5d5a163f7634ffd555bffa545008ae3991c298/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml
variables:
ANDROID_COMPILE_SDK: "28"
ANDROID_BUILD_TOOLS: "28.0.2"
ANDROID_SDK_TOOLS: "7583922"
before_script:
- apt-get update -y --quiet > /dev/null
- DEBIAN_FRONTEND=noninteractive apt-get install -y --quiet wget tar unzip lib32stdc++6 lib32z1 openjdk-11-jre > /dev/null
- export ANDROID_HOME=$PWD/android-home
- mkdir -p "$ANDROID_HOME"
- cd "$ANDROID_HOME"
- wget --quiet --output-document=cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
- unzip -q -d cmdline-tools cmdline-tools.zip
- mv cmdline-tools/{cmdline-,}tools || true
- cd ..
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/tools/bin/
- yes | sdkmanager --licenses > /dev/null || true
- echo y | sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" > /dev/null
- echo y | sdkmanager "platform-tools" > /dev/null
- echo y | sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" > /dev/null
stages:
- build
assembleDebug:
stage: build
script: ./gradlew assembleDebug
script: ./gradlew assembleDebug && mv app/build/outputs/apk/debug/app-debug.apk fileify.apk
artifacts:
paths:
- app/build/outputs/apk/debug/*.apk
- fileify.apk