143 lines
5.3 KiB
YAML
143 lines
5.3 KiB
YAML
stages:
|
|
- test
|
|
- deploy
|
|
|
|
.base:
|
|
image: registry.gitlab.com/fdroid/ci-images-client:latest
|
|
before_script:
|
|
- export GRADLE_USER_HOME=$PWD/.gradle
|
|
- export ANDROID_COMPILE_SDK=`sed -n 's,.*compileSdkVersion\s*\([0-9][0-9]*\).*,\1,p' app/build.gradle`
|
|
- alias sdkmanager="sdkmanager --no_https"
|
|
- echo y | sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" > /dev/null
|
|
# limit RAM usage for all gradle runs
|
|
- export maxmem=$(expr $(sed -n 's,^MemAvailable:[^0-9]*\([0-9][0-9]*\)[^0-9]*$,\1,p' /proc/meminfo) / 1024 / 2 / 1024 \* 1024)
|
|
- printf "\norg.gradle.jvmargs=-Xmx${maxmem}m -XX:MaxPermSize=${maxmem}m\norg.gradle.daemon=false\norg.gradle.parallel=false\n" >> gradle.properties
|
|
after_script:
|
|
# this file changes every time but should not be cached
|
|
- rm -f $GRADLE_USER_HOME/caches/modules-2/modules-2.lock
|
|
- rm -fr $GRADLE_USER_HOME/caches/*/plugin-resolution/
|
|
cache:
|
|
paths:
|
|
- .gradle/wrapper
|
|
- .gradle/caches
|
|
|
|
.test-template: &test-template
|
|
extends: .base
|
|
stage: test
|
|
artifacts:
|
|
name: "${CI_PROJECT_PATH}_${CI_JOB_STAGE}_${CI_COMMIT_REF_NAME}_${CI_COMMIT_SHA}"
|
|
paths:
|
|
- kernel.log
|
|
- logcat.txt
|
|
- app/core*
|
|
- app/*.log
|
|
- app/build/reports
|
|
- app/build/outputs/*ml
|
|
- app/build/outputs/apk
|
|
expire_in: 1 week
|
|
when: on_failure
|
|
after_script:
|
|
- echo "Download debug artifacts from https://gitlab.com/${CI_PROJECT_PATH}/-/jobs"
|
|
|
|
# Run the most important first. Then we can decide whether to ignore
|
|
# the style tests if the rest of the more meaningful tests pass.
|
|
test_lint_pmd_checkstyle:
|
|
<<: *test-template
|
|
script:
|
|
- export EXITVALUE=0
|
|
- function set_error() { export EXITVALUE=1; printf "\x1b[31mERROR `history|tail -2|head -1|cut -b 6-500`\x1b[0m\n"; }
|
|
- ./gradlew assemble
|
|
# always report on lint errors to the build log
|
|
- sed -i -e 's,textReport .*,textReport true,' app/build.gradle
|
|
- ./gradlew testFullDebugUnitTest || set_error
|
|
- ./gradlew lint || set_error
|
|
- ./gradlew pmd || set_error
|
|
- ./gradlew checkstyle || set_error
|
|
- ./tools/check-format-strings.py || set_error
|
|
- ./tools/check-fastlane-whitespace.py || set_error
|
|
- ./tools/remove-unused-and-blank-translations.py || set_error
|
|
- echo "These are unused or blank translations that should be removed:"
|
|
- git --no-pager diff --ignore-all-space --name-only --exit-code app/src/*/res/values*/strings.xml || set_error
|
|
- exit $EXITVALUE
|
|
|
|
errorprone:
|
|
extends: .base
|
|
stage: test
|
|
script:
|
|
- apt-get update
|
|
- apt-get install -t stretch-backports openjdk-11-jdk-headless
|
|
- update-java-alternatives --set java-1.11.0-openjdk-amd64
|
|
- export JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64
|
|
- cat config/errorprone.gradle >> app/build.gradle
|
|
- ./gradlew -Dorg.gradle.dependency.verification=lenient assembleDebug
|
|
|
|
# Run the tests in the emulator. Each step is broken out to run on
|
|
# its own since the CI runner can have limited RAM, and the emulator
|
|
# can take a while to start.
|
|
#
|
|
# once these prove stable, the task should be switched to
|
|
# connectedCheck to test all the build flavors
|
|
.connected-template: &connected-template
|
|
extends: .base
|
|
script:
|
|
- ./gradlew assembleFullDebug
|
|
- export AVD_SDK=`echo $CI_JOB_NAME | awk '{print $2}'`
|
|
- export AVD_TAG=`echo $CI_JOB_NAME | awk '{print $3}'`
|
|
- export AVD_ARCH=`echo $CI_JOB_NAME | awk '{print $4}'`
|
|
- export AVD_PACKAGE="system-images;android-${AVD_SDK};${AVD_TAG};${AVD_ARCH}"
|
|
- echo $AVD_PACKAGE
|
|
|
|
- alias sdkmanager
|
|
- ls -l ~/.android
|
|
|
|
- adb start-server
|
|
- start-emulator
|
|
- wait-for-emulator
|
|
- adb devices
|
|
- adb shell input keyevent 82 &
|
|
- ./gradlew installFullDebug
|
|
- adb shell am start -n org.fdroid.fdroid.debug/org.fdroid.fdroid.views.main.MainActivity
|
|
- if [ $AVD_SDK -lt 25 ] || ! emulator -accel-check; then
|
|
export FLAG=-Pandroid.testInstrumentationRunnerArguments.notAnnotation=androidx.test.filters.LargeTest;
|
|
fi
|
|
- ./gradlew connectedFullDebugAndroidTest $FLAG
|
|
|
|
no-accel 22 default x86:
|
|
<<: *test-template
|
|
<<: *connected-template
|
|
|
|
.kvm-template: &kvm-template
|
|
tags:
|
|
- fdroid
|
|
- kvm
|
|
only:
|
|
variables:
|
|
- $RUN_KVM_JOBS
|
|
<<: *test-template
|
|
<<: *connected-template
|
|
|
|
kvm 29 microg x86_64:
|
|
<<: *kvm-template
|
|
|
|
deploy_nightly:
|
|
extends: .base
|
|
stage: deploy
|
|
only:
|
|
- master
|
|
script:
|
|
- test -z "$DEBUG_KEYSTORE" && exit 0
|
|
- sed -i
|
|
's,<string name="app_name">.*</string>,<string name="app_name">F-Nightly</string>,'
|
|
app/src/main/res/values*/strings.xml
|
|
# add this nightly repo as a enabled repo
|
|
- sed -i -e '/<\/string-array>/d' -e '/<\/resources>/d' app/src/main/res/values/default_repos.xml
|
|
- echo "<item>${CI_PROJECT_PATH}-nightly</item>" >> app/src/main/res/values/default_repos.xml
|
|
- echo "<item>${CI_PROJECT_URL}-nightly/raw/master/fdroid/repo</item>" >> app/src/main/res/values/default_repos.xml
|
|
- cat config/nightly-repo/repo.xml >> app/src/main/res/values/default_repos.xml
|
|
- export DB=`sed -n 's,.*DB_VERSION *= *\([0-9][0-9]*\).*,\1,p' app/src/main/java/org/fdroid/fdroid/data/DBHelper.java`
|
|
- export versionCode=`printf '%d%05d' $DB $(date '+%s'| cut -b4-8)`
|
|
- sed -i "s,^\(\s*versionCode\) *[0-9].*,\1 $versionCode," app/build.gradle
|
|
# build the APKs!
|
|
- ./gradlew assembleDebug
|
|
- fdroid nightly -v
|