-
Notifications
You must be signed in to change notification settings - Fork 0
136 lines (120 loc) · 3.44 KB
/
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
macos-tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- name: Cache Build files
uses: actions/cache@v4
with:
path: |
~/.konan
~/.gradle
key: ${{ runner.os }}-${{ hashFiles('gradle.properties') }}-v1
- uses: gradle/gradle-build-action@v3
name: Test Jvm/JS/Apple targets
with:
arguments: koverMergedXmlReport
- name: Archive Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-results
path: '**/TEST-*.xml'
windows-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- uses: gradle/gradle-build-action@v3
name: Test Windows Target
with:
arguments: mingwX64Test
- name: Archive Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-results
path: '**/TEST-*.xml'
linux-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- name: Cache Build files
uses: actions/cache@v4
with:
path: |
~/.konan
~/.gradle
key: ${{ runner.os }}-${{ hashFiles('gradle.properties') }}-v1
- uses: gradle/gradle-build-action@v3
name: Test Linux Target
with:
arguments: linuxX64Test
- name: Archive Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-results
path: '**/TEST-*.xml'
upload-kover-reports:
runs-on: ubuntu-latest
needs: [ macos-tests ]
steps:
- uses: actions/checkout@master
- name: Download kover reports
uses: actions/download-artifact@v3
with:
name: reports
- uses: codecov/codecov-action@v4
with:
files: "build/reports/kover/merged/**/*.xml"
upload-junit-results:
runs-on: ubuntu-latest
needs: [ linux-tests, macos-tests, windows-tests ]
if: ${{ always() }}
steps:
- uses: actions/checkout@master
- name: Download test results
uses: actions/download-artifact@v3
with:
name: test-results
- name: Publish Unit Test Results
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: '**/TEST-*.xml'