-
Notifications
You must be signed in to change notification settings - Fork 11
299 lines (286 loc) · 10.2 KB
/
integrationtests.yml
File metadata and controls
299 lines (286 loc) · 10.2 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
name: Integration tests
# Workflow Trigger
on:
# Trigger the workflow on a pull request to any branch, ignoring changes to /docs
pull_request:
paths-ignore:
- 'docs/**'
# Trigger the workflow on pushes to the master branch, ignoring changes to /docs
push:
branches:
- master
paths-ignore:
- 'docs/**'
jobs:
# Build
Build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Fetch all tags and branches
run: git fetch --prune --unshallow
- name: Install .NET
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
with:
# .NET 5 required for GitVersion
# .NET 7 required for Cake.Recipe
dotnet-version: |
5.x
7.x
8.x
9.x
10.x
- name: Build
run: ./build.sh --target=Create-NuGet-Packages
shell: bash
- name: Publish NuGet package as build artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: NuGet Package
path: ./BuildArtifacts/Packages/NuGet/
# Integration Tests Cake.Issues.GitRepository
IntegrationTestsGitRepositoryCakeScripting:
name: Integration Tests Cake.Issues.GitRepository Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
lfs: true
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.GitRepository/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Markdownlint
IntegrationTestsMarkdownlintCakeScripting:
name: Integration Tests Cake.Issues.Markdownlint Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install Markdownlint
uses: ./.github/actions/install-markdownlint
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Markdownlint/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.MsBuild Cake Scripting
IntegrationTestsMsBuildCakeScripting:
name: Integration Tests Cake.Issues.MsBuild Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 9.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.MsBuild/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.BuildServer.GitHubActions Cake Scripting
IntegrationTestsBuildServerGitHubActionsCakeScripting:
name: Integration Tests Cake.Issues.BuildServer.GitHubActions Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 9.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.BuildServer.GitHubActions/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Console Cake Scripting
IntegrationTestsReportingConsoleCakeScripting:
name: Integration Tests Cake.Issues.Reporting.Console Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Console/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Console Cake Frosting
IntegrationTestsReportingConsoleCakeFrosting:
name: Integration Tests Cake.Issues.Reporting.Console Frosting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Console/frosting/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Generic Cake Scripting
IntegrationTestsReportingGenericCakeScripting:
name: Integration Tests Cake.Issues.Reporting.Generic Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Generic/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Generic Cake Frosting
IntegrationTestsReportingGenericCakeFrosting:
name: Integration Tests Cake.Issues.Reporting.Generic Cake Frosting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Generic/frosting/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Sarif Cake Scripting
IntegrationTestsReportingSarifCakeScripting:
name: Integration Tests Cake.Issues.Reporting.Sarif Cake Scripting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Sarif/script-runner/${{ env.TFM }}
shell: bash
# Integration Tests Cake.Issues.Reporting.Sarif Cake Frosting
IntegrationTestsReportingSarifCakeFrosting:
name: Integration Tests Cake.Issues.Reporting.Sarif Cake Frosting
needs: Build
strategy:
fail-fast: false
matrix:
os: [
windows-2022, windows-2025,
ubuntu-22.04, ubuntu-24.04,
macos-14, macos-15]
dotnet: [8.x, 9.x, 10.x]
runs-on: ${{ matrix.os }}
steps:
- name: Get the sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Prepare integration tests
uses: ./.github/actions/prepare-integration-test
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run integration tests
run: ./build.sh --verbosity=diagnostic
working-directory: ./tests/Cake.Issues.Reporting.Sarif/frosting/${{ env.TFM }}
shell: bash