2024-01-08 11:08:33 +00:00
|
|
|
image: eclipse-temurin:17-jdk
|
2024-01-08 08:31:15 +00:00
|
|
|
|
2024-01-08 10:41:34 +00:00
|
|
|
variables:
|
|
|
|
ANDROID_COMPILE_SDK: "34"
|
2024-01-08 10:44:59 +00:00
|
|
|
ANDROID_BUILD_TOOLS: "34.0.0"
|
2024-01-08 10:52:12 +00:00
|
|
|
ANDROID_SDK_TOOLS: "10406996"
|
2024-01-08 10:41:34 +00:00
|
|
|
|
|
|
|
before_script:
|
2024-01-08 11:10:40 +00:00
|
|
|
- apt install wget tar unzip bash
|
2024-01-08 11:01:26 +00:00
|
|
|
- wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
|
2024-01-08 10:41:34 +00:00
|
|
|
- unzip -d android-sdk-linux android-sdk.zip
|
2024-01-08 10:57:57 +00:00
|
|
|
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" >/dev/null
|
|
|
|
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager "platform-tools" >/dev/null
|
|
|
|
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" >/dev/null
|
2024-01-08 10:41:34 +00:00
|
|
|
- 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
|
|
|
|
|
2024-01-08 08:31:15 +00:00
|
|
|
stages:
|
|
|
|
- build
|
2024-01-08 10:41:34 +00:00
|
|
|
- test
|
2024-01-08 08:31:15 +00:00
|
|
|
|
2024-01-08 10:41:34 +00:00
|
|
|
lintDebug:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
2024-01-08 08:31:15 +00:00
|
|
|
|
2024-01-08 10:41:34 +00:00
|
|
|
assembleDebug:
|
2024-01-08 08:31:15 +00:00
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- ./gradlew assembleDebug
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2024-01-08 10:41:34 +00:00
|
|
|
- app/build/outputs/
|
|
|
|
|
|
|
|
debugTests:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- ./gradlew -Pci --console=plain :app:testDebug
|