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 34e6ab8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/adb-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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@v2

- 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: ./gradlew connectedCheck
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 34e6ab8

Please sign in to comment.