AndroidBLEDemo/.gitlab-ci.yml

45 lines
1.4 KiB
YAML
Raw Normal View History

2024-01-08 11:03:17 +00:00
image: openjdk: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"
ANDROID_SDK_TOOLS: "10406996"
2024-01-08 10:41:34 +00:00
before_script:
- apt-get --quiet update --yes
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
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
- 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