From ac46c2230bb6aa44654262b0562a20854cb43f98 Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Wed, 15 May 2024 14:24:39 +0200 Subject: [PATCH] fix(ci): fix instrumented tests --- .github/workflows/test.yml | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a2af6e5b..166f8635b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ name: Run tests -on: [push] +on: [ push ] jobs: unit-tests: @@ -18,20 +18,43 @@ jobs: run: chmod +x ./gradlew - name: Run unit test run: ./gradlew test + - name: Upload test reports + if: ${{ !cancelled() }} + uses: actions/upload-artifact@v4 + with: + name: test-reports-${{ matrix.api-level }} + path: '**/build/reports/tests' instrumented-tests: - runs-on: macos-latest + runs-on: ubuntu-latest + timeout-minutes: 55 + strategy: + matrix: + api-level: [ 26, 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 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: java-version: '17' - distribution: 'adopt' + 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 \ No newline at end of file + 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' \ No newline at end of file