-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.gitlab-ci.yml
64 lines (56 loc) · 1.84 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
image: openjdk:11
variables:
ANDROID_COMPILE_SDK: "30"
ANDROID_BUILD_TOOLS: "30.0.3"
ANDROID_SDK_TOOLS: "7583922_latest"
GIT_SUBMODULE_STRATEGY: normal
before_script:
- 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/commandlinetools-linux-${ANDROID_SDK_TOOLS}.zip
- unzip -d android-sdk-linux android-sdk.zip
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager --sdk_root=. "platforms;android-${ANDROID_COMPILE_SDK}" >/dev/null
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager --sdk_root=. "platform-tools" >/dev/null
- echo y | android-sdk-linux/cmdline-tools/bin/sdkmanager --sdk_root=. "build-tools;${ANDROID_BUILD_TOOLS}" >/dev/null
- export ANDROID_SDK_ROOT=$PWD
- export PATH=$PATH:$PWD/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/cmdline-tools/bin/sdkmanager --sdk_root=. --licenses
- set -o pipefail
stages:
- build
- test
lintDebug:
interruptible: true
stage: build
script:
- ./gradlew -Pci --console=plain :app:lintGplayDebug -PbuildDir=lint
assembleDebug:
interruptible: true
stage: build
script:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/
debugTests:
interruptible: true
stage: test
script:
- ./gradlew -Pci --console=plain :app:testGplayDebug
#androidTests:
# image: ghcr.io/bitfireat/docker-android-ci:main
# stage: test
# tags:
# # require the privileged tag if the emulator is needed
# - privileged
# script:
# - start-emulator.sh
# - ./gradlew app:connectedGplayDebugAndroidTest
# artifacts:
# paths:
# - app/build/outputs/lint-results-debug.html
# - app/build/reports
# - build/reports