Skip to content

Commit

Permalink
Running android tests as part of daily checks (#509)
Browse files Browse the repository at this point in the history
* Running android tests as part of PR checks

* Moving android tests to daily checks
  • Loading branch information
LikeTheSalad authored Aug 8, 2024
1 parent 419f685 commit fab1189
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/codeql-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ jobs:

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
- name: Enable KVM for Android tests
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 tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew connectedCheck

open-issue-on-failure:
# open an issue on failure because it can be easy to miss CI failure notifications
Expand Down

0 comments on commit fab1189

Please sign in to comment.