CI: Upload test-report when an error occurs

This commit is contained in:
litetex 2022-01-09 18:09:47 +01:00 committed by GitHub
parent 4a12bedce8
commit 5d2bf7e182

View file

@ -73,6 +73,13 @@ jobs:
# workaround to emulator bug: https://github.com/ReactiveCircus/android-emulator-runner/issues/160
emulator-build: 7425822
script: ./gradlew connectedCheck --stacktrace
- name: Upload test report when tests fail # because the printed out stacktrace (console) is too short, see also #7553
uses: actions/upload-artifact@v2
if: failure()
with:
name: android-test-report-api${{ matrix.api-level }}
path: app/build/reports/androidTests/connected/**
sonar:
runs-on: ubuntu-latest