Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipndev committed Feb 14, 2024
1 parent 0684b90 commit 9ab4a7c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/adb-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ADB Check (Temporary)

on: push

jobs:
test-e2e-android:
name: Run tests on Android
runs-on: ["self-hosted", "Linux", "X64"]

steps:
- uses: actions/checkout@v4
- uses: android-actions/setup-android@v3

- 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: Run Android Emulator
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: adb devices -l
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: E2E

on: [pull_request]
on: release

jobs:
build-e2e-android:
Expand Down

0 comments on commit 9ab4a7c

Please sign in to comment.