WIP: emulator-based tests #30
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: Test nix-on-droid in an emulator | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: 0 0 * * 1 | |
jobs: | |
emulate: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
#api-level: [29, 34] | |
api-level: [29] | |
way: | |
- bootstrap_flakes | |
- bootstrap_channels | |
- test_channels_uiautomator | |
- test_channels_shell | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix / enable KVM | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Setup cachix | |
uses: cachix/cachix-action@v14 | |
with: | |
name: nix-on-droid | |
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" | |
- name: Build droidctl | |
run: nix build 'github:t184256/droidctl' --out-link droidctl | |
- name: Configure AVD cache | |
uses: actions/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ matrix.api-level }} | |
- name: Create AVD and generate snapshot for caching | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
target: default | |
api-level: ${{ matrix.api-level }} | |
arch: x86_64 | |
force-avd-creation: false | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
script: echo "Generated AVD snapshot for caching." | |
- name: Test way=${{ matrix.way}} api-level=${{ matrix.api-level }} | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
target: default | |
api-level: ${{ matrix.api-level }} | |
arch: x86_64 | |
script: > | |
cd tests/emulator && | |
adb shell settings put secure enabled_accessibility_services com.google.android.marvin.talkback/com.google.android.marvin.talkback.TalkBackService && | |
nix run 'github:t184256/droidctl' -- run ${{ matrix.way }}.py | |
- name: Upload screenshots | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots-${{ matrix.way }}-${{ matrix.api-level }} | |
path: tests/emulator/screenshots | |
if-no-files-found: warn # 'error' or 'ignore' are also available | |
# TODO: push to cachix from device | |
# - name: Push to cachix | |
# if: always() && github.event_name != 'pull_request' | |
# run: ... | |
# TODO: externally-driven test | |
# TODO: more API levels |