Campus-Capture/campus-capture

View on GitHub
.cirrus.yml

Summary

Maintainability
Test Coverage
env:
  CC_TEST_REPORTER_ID: ENCRYPTED[!0f645db5296da5f9df5391329da33feacafcda008fc03b66a851dcea7d350994733ca486fc381159fdee966eecbd46e7!]
  MAP_API_KEY: ENCRYPTED[a74db0b21a25d015a9d08efcbcfa7182481d4b01b2101e27d30a13f3446bad813fd74c904ceabcb209ec4d4df52897f1]

container:
  image: cirrusci/android-sdk:30
  cpu: 8
  memory: 32G
  kvm: true
  
accel_check_script: emulator -accel-check

check_android_task:
  name: Run Android tests
  before_script: |
    touch local.properties
  install_emulator_script:
    sdkmanager --install "system-images;android-30;google_apis_playstore;x86"
  install_firebase_emulator_script: |
    curl -Lo ./firebase_bin https://firebase.tools/bin/linux/latest
  create_avd_script:
    echo no | avdmanager create avd --force
    --name emulator
    --package "system-images;android-30;google_apis_playstore;x86"
  start_avd_background_script:
    $ANDROID_HOME/emulator/emulator
    -avd emulator
    -no-audio
    -no-boot-anim
    -gpu swiftshader_indirect
    -no-snapshot
    -no-window
    -camera-back none
  assemble_instrumented_tests_script: |
    chmod +x gradlew
    ./gradlew assembleDebugAndroidTest
  wait_for_avd_script:
    adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 20; done; input keyevent 82'
  disable_animations_script: |
    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
  prepare_codeclimate_script: |
    curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
    chmod +x ./cc-test-reporter
    ./cc-test-reporter before-build
  screen_record_background_script:
    for n in $(seq 1 20); do adb exec-out screenrecord --time-limit=180 --output-format=h264 - > $n.h264; done
  check_script: |
    chmod +x firebase_bin
    ./firebase_bin emulators:exec --import=emulator --project sdp-firebase-bootcamp-72e24 './gradlew check connectedCheck'
  report_codeclimate_script: |
    export JACOCO_SOURCE_PATH=app/src/main/java/
    ./cc-test-reporter format-coverage ./app/build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml --input-type jacoco
    ./cc-test-reporter upload-coverage
  lint_script:
    ./gradlew lintDebug
  always:
    wait_for_screenrecord_script: |
      pkill -2 -x adb
      sleep 2
    screenrecord_artifacts:
      path: "*.h264"
    android_lint_artifacts:
      path: ./app/build/reports/lint-results-debug.xml
      format: android-lint
    test_artifacts:
      path: "./app/build/test-results/**/*.xml"
      format: junit
    androidtest_artifacts:
      path: "./app/build/outputs/**/*.xml"
      format: junit
    androidtest_image_artifacts:
      path: "./app/build/outputs/**/.png"