Renovate Bot
c3c43dc068
All checks were successful
Build & Test / Validate (pull_request) Successful in 14s
Build & Test / Run Unit Tests (pull_request) Successful in 7m39s
Build & Test / Run UI Tests (pull_request) Successful in 11m35s
Build & Test / Validate (push) Successful in 15s
Build & Test / Run Unit Tests (push) Successful in 7m54s
Build & Test / Run UI Tests (push) Successful in 13m15s
38 lines
1.4 KiB
YAML
38 lines
1.4 KiB
YAML
image: openjdk:24-jdk
|
|
|
|
variables:
|
|
ANDROID_COMPILE_SDK: "28"
|
|
ANDROID_BUILD_TOOLS: "28.0.3"
|
|
ANDROID_SDK_TOOLS: "4333796"
|
|
|
|
before_script:
|
|
- export GRADLE_USER_HOME=cache/.gradle
|
|
- apt-get --quiet update --yes
|
|
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
|
|
- 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:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- ./gradlew --stacktrace --console=plain :app:lintDebug jacocoTestReport
|
|
- cat app/build/reports/jacoco/jacocoTestReport/html/index.html
|
|
artifacts:
|
|
reports:
|
|
junit: app/build/test-results/testDebugUnitTest/TEST-*.xml
|
|
paths:
|
|
- app/build/reports/jacoco/jacocoTestReport/
|
|
- app/build/outputs/
|