Skip to content

Commit 4b8159b

Browse files
committed
Ubuntu FTW
1 parent 9bf5c06 commit 4b8159b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,19 @@ on:
1313

1414
jobs:
1515
android:
16-
runs-on: macos-latest
16+
runs-on: ubuntu-latest
1717
timeout-minutes: 30
1818
steps:
1919

2020
- name: "Git Checkout"
2121
uses: actions/checkout@v2
2222

23+
- name: Enable KVM
24+
run: |
25+
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
26+
sudo udevadm control --reload-rules
27+
sudo udevadm trigger --name-match=kvm
28+
2329
- name: "Install Node"
2430
uses: actions/setup-node@v2
2531
with:
@@ -49,7 +55,8 @@ jobs:
4955
uses: reactivecircus/android-emulator-runner@v2
5056
with:
5157
api-level: 28
52-
arch: arm64-v8a
58+
arch: x86_64
59+
disable-animations: true
5360
# Firebase Firestore works without Google Play Services, so we don't use the `googleapis`
5461
# emulator target as it's considerably slower on CI.
5562
target: default

0 commit comments

Comments
 (0)