You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
image: openjdk:8-jdk
|
|
|
|
variables:
|
|
ANDROID_COMPILE_SDK: "28"
|
|
ANDROID_BUILD_TOOLS: "28.0.3"
|
|
ANDROID_SDK_TOOLS: "4333796"
|
|
|
|
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/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:
|
|
- build
|
|
- test
|
|
|
|
lintDebug:
|
|
stage: build
|
|
script:
|
|
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
|
|
|
assembleDebug:
|
|
stage: build
|
|
script:
|
|
- ./gradlew assembleDebug
|
|
artifacts:
|
|
paths:
|
|
- app/build/outputs/
|
|
|
|
instrumentation_tests:
|
|
stage: test
|
|
script:
|
|
- emulator -avd testAVD -no-audio -no-window &
|
|
- ./ci/android-wait-for-emulator.sh
|
|
- adb devices
|
|
- adb shell settings put global window_animation_scale 0 &
|
|
- adb shell settings put global transition_animation_scale 0 &
|
|
- adb shell settings put global animator_duration_scale 0 &
|
|
- adb shell input keyevent 82 &
|
|
- ./gradlew connectedAndroidTest
|
|
- ./ci/stop-emulators.sh
|
|
artifacts:
|
|
name: "reports_${CI_PROJECT_NAME}_${CI_BUILD_REF_NAME}"
|
|
when: on_failure
|
|
expire_in: 4 days
|
|
paths:
|
|
- app/build/reports/androidTests/connected/
|
|
|
|
#debugTests:
|
|
# stage: test
|
|
# script:
|
|
# - ./gradlew -Pci --console=plain :app:testDebug
|
|
|