Skip to content

Commit

Permalink
Change Android test runner to ubuntu-latest
Browse files Browse the repository at this point in the history
New large Linux runners should be 2-3x faster than macOS runner
  • Loading branch information
jeffdgr8 committed Feb 1, 2024
1 parent c5749e1 commit 30eb64d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
android-tests:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
name: Run Android tests
runs-on: macos-14
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -102,6 +102,11 @@ jobs:
with:
distribution: zulu
java-version: 17
- 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: Run connected tests
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down

0 comments on commit 30eb64d

Please sign in to comment.