33 lines
1.2 KiB
YAML
33 lines
1.2 KiB
YAML
image: reactivecircus/android-emulator-23:latest
|
|
|
|
variables:
|
|
API_LEVEL: "23"
|
|
ARCH: "x86"
|
|
TARGET: "default"
|
|
#CC_TEST_REPORTER_ID defined in GitLab CI settings
|
|
|
|
stages:
|
|
- test
|
|
- report
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- echo no | avdmanager create avd --force --name "api-${API_LEVEL}" --abi "${TARGET}/${ARCH}" --package "system-images;android-${API_LEVEL};${TARGET};${ARCH}"
|
|
- $ANDROID_HOME/emulator/emulator -avd "api-${API_LEVEL}" -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -camera-back none &
|
|
- chmod +x android-wait-for-emulator.sh
|
|
- ./gradlew build
|
|
- ./android-wait-for-emulator.sh
|
|
- adb shell settings put global window_animation_scale 0.0
|
|
- adb shell settings put global transition_animation_scale 0.0
|
|
- adb shell settings put global animator_duration_scale 0.0
|
|
|
|
- ./gradlew build connectedCheck connectedDebugAndroidTest jacocoTestReport
|
|
|
|
- cat app/build/reports/jacoco/jacocoTestReport/html/index.html | grep -o 'Total[^%]*%'
|
|
|
|
artifacts:
|
|
paths:
|
|
- ./app/build/reports/jacoco/jacocoTestReport/
|
|
expire_in: 1 week
|