Skip to content

Commit

Permalink
Try to switch running tests from MacOS to Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
centic9 committed Jun 26, 2024
1 parent 81bf22e commit 2f6dac1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,16 @@ jobs:

android_tests:
# see https://github.com/reactivecircus/android-emulator-runner,
# needs to run on macos as only there virtualization is available!
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Enable KVM group perms
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: Set up JDK
uses: actions/setup-java@v2
with:
Expand All @@ -32,5 +37,4 @@ jobs:
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 26
arch: arm64-v8a
script: ./gradlew connectedCheck

0 comments on commit 2f6dac1

Please sign in to comment.