-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (59 loc) · 1.62 KB
/
graphics_tests.yml
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
64
65
66
67
68
69
70
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, # Tests Mac x86_64
macos-14, # Tests Mac arm64
ubuntu-22.04, # Tests Linux x86_64
windows-2022, # Tests Windows x86_64
]
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
env:
SKIP_ERRORPRONE: true
SKIP_JAVADOC: true
run: >
./gradlew
:integration_tests:nativegraphics:testDebugUnitTest
--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/*