aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/graphics_tests.yml
blob: 1ba2e5670dc70646d4b38de5a53cac9d4b7bfe3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Graphics Tests

on:
  push:
    branches: [ master, 'robolectric-*.x' ]
    paths-ignore:
      - '**.md'

  pull_request:
    branches: [ master, google ]
    paths-ignore:
      - '**.md'

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

permissions:
  contents: read

jobs:
  graphics_tests:
    strategy:
      matrix:
        device: [ macos-13, ubuntu-22.04, macos-14 ]
    runs-on: ${{ matrix.device }}

    steps:
      - uses: actions/checkout@v4

      - name: Set up JDK 17
        uses: actions/setup-java@v4
        with:
          distribution: 'adopt'
          java-version: 17

      - uses: gradle/actions/setup-gradle@v3

      - name: Show runner info
        run: |
          uname -a

      - name: Run unit tests
        run: |
          SKIP_ERRORPRONE=true SKIP_JAVADOC=true ./gradlew \
          :integration_tests:nativegraphics:testDebugUnitTest \
          :integration_tests:roborazzi:verifyRoborazziDebug \
          --info --stacktrace --continue \
          --parallel \
          --no-watch-fs \
          -Drobolectric.alwaysIncludeVariantMarkersInTestName=true \
          -Dorg.gradle.workers.max=2

      - name: Upload Test Results
        uses: actions/upload-artifact@v4
        if: always()
        with:
          name: test_results_${{ matrix.device }}
          path: |
            **/build/test-results/**/TEST-*.xml
            **/roborazzi/build/reports/*
            **/roborazzi/src/screenshots/*
            **/roborazzi/build/outputs/roborazzi/*