Skip to content

Commit

Permalink
fix(ci): fix instrumented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jun 25, 2024
1 parent b4aa5fb commit 0bb079b
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,36 @@ on: [push]

jobs:
instrumented-tests:
runs-on: macos-latest
runs-on: ubuntu-latest
timeout-minutes: 55
strategy:
matrix:
api-level: [ 21, 34 ]
steps:
- 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
ls /dev/kvm
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
java-version: '21'
distribution: 'zulu'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run Android Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 30
api-level: ${{ matrix.api-level }}
arch: x86_64
disable-animations: true
emulator-options: -no-snapshot -no-window -no-boot-anim -camera-back emulated -camera-front emulated -gpu swiftshader_indirect
script: ./gradlew connectedCheck
script: ./gradlew connectedCheck
- name: Upload test reports
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-reports-${{ matrix.api-level }}
path: '**/build/reports/androidTests'

0 comments on commit 0bb079b

Please sign in to comment.