Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
timeout-minutes: 55
strategy:
matrix:
api-level: [26, 34]
api-level: [ 26, 34 ]

steps:
- name: Delete unnecessary tools 🔧
Expand Down Expand Up @@ -223,25 +223,25 @@ jobs:
heap-size: 600M
script: ./gradlew connectedDemoDebugAndroidTest --daemon

- name: Run local tests (including Roborazzi) for the combined coverage report (only API 30)
if: matrix.api-level == 30
- name: Run local tests (including Roborazzi) for the combined coverage report (only API 34)
if: matrix.api-level == 34
# There is no need to verify Roborazzi tests to generate coverage.
run: ./gradlew testDemoDebugUnitTest -Proborazzi.test.verify=false # Add Prod if we ever add JVM tests for prod

# Add `createProdDebugUnitTestCoverageReport` if we ever add JVM tests for prod
- name: Generate coverage reports for Debug variants (only API 30)
if: matrix.api-level == 30
- name: Generate coverage reports for Debug variants (only API 34)
if: matrix.api-level == 34
run: ./gradlew createDemoDebugCombinedCoverageReport

- name: Upload test reports
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-reports-${{ matrix.api-level }}
path: '**/build/reports/androidTests'

- name: Display local test coverage (only API 30)
if: matrix.api-level == 30
- name: Display local test coverage (only API 34)
if: matrix.api-level == 34
id: jacoco
uses: madrapps/jacoco-report@v1.7.1
with:
Expand All @@ -251,9 +251,9 @@ jobs:
paths: |
${{ github.workspace }}/**/build/reports/jacoco/**/*Report.xml
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload local coverage reports (XML + HTML) (only API 30)
if: matrix.api-level == 30

- name: Upload local coverage reports (XML + HTML) (only API 34)
if: matrix.api-level == 34
uses: actions/upload-artifact@v4
with:
name: coverage-reports
Expand Down