Collect artifacts from tests #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull requests | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g" | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'README.MD' | |
- 'mkdocs.yml' | |
- '.github/workflows/docs.yml' | |
- '.github/workflows/docs_pr.yml' | |
branches: | |
- 'main' | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
check-latest: false | |
cache: "gradle" | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Check and build libraries | |
run: ./gradlew --build-cache check assembleRelease --stacktrace | |
instrumented_tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [x86_64] | |
target: [ google_apis ] | |
api-level: [34] | |
profile: [pixel_6, tv_1080p] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
check-latest: false | |
cache: "gradle" | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Compile instrumented tests | |
run: ./gradlew --build-cache assembleDebugAndroidTest | |
# Retrieve the cached emulator snapshot. | |
- name: AVD cache | |
uses: actions/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ matrix.api-level }}-${{ matrix.profile }} | |
- name: Create AVD snapshot | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: ${{ matrix.arch }} | |
profile: ${{ matrix.profile }} | |
disable-animations: false | |
force-avd-creation: false | |
ram-size: 4096M | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
script: echo "Generated AVD snapshot." | |
- name: Run instrumented tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: ${{ matrix.arch }} | |
profile: ${{ matrix.profile }} | |
avd-name: avd-${{ matrix.api-level }}-${{ matrix.profile }} | |
disable-animations: false | |
force-avd-creation: false | |
ram-size: 4096M | |
emulator-options: -no-window -no-snapshot-save -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
script: | | |
./gradlew uninstallAll | |
./gradlew --build-cache connectedDebugAndroidTest | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.profile }}-${{ matrix.api-level }}--instrumentation-test-results | |
path: | | |
logs/** | |
./**/build/reports/androidTests-results/** | |
./**/build/outputs/connected_android_test_additional_output/** | |
if: always() |