-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 1.12 KB
/
test-android.yml
File metadata and controls
34 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Test Android
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- 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
- name: Test KMP on Android
uses: ReactiveCircus/android-emulator-runner@v2
with:
arch: x86_64
api-level: 33
target: google_apis
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: ./gradlew connectedAndroidTest
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: All Tests
path: core/build/test-results/**/TEST*.xml
reporter: java-junit