23
23
config : Release
24
24
runs-on : windows-latest
25
25
steps :
26
- - uses : actions/checkout@v3
27
-
28
- - id : setup-llvm
29
- name : Set up LLVM (MSVC)
30
- uses : ./.github/actions/setup-llvm-msvc
31
- if : matrix.compiler == 'clang-cl'
26
+ - uses : actions/checkout@v4
32
27
33
28
- name : Download nuget
34
29
run : |
49
44
$target_version = "1.2.3.4"
50
45
$props = "Configuration=$target_configuration,Platform=$target_platform,CppWinRTBuildVersion=$target_version"
51
46
if ("${{ matrix.compiler }}" -eq "clang-cl") {
52
- $props += ",Clang=1,PlatformToolset=LLVM_v143,LLVMInstallDir=${{ steps.setup-llvm.outputs.llvm-path }} "
47
+ $props += ",Clang=1,PlatformToolset=ClangCl "
53
48
}
54
49
Add-Content $env:GITHUB_ENV "msbuild_config_props=/p:$props"
55
50
71
66
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" cppwinrt.sln /t:cppwinrt
72
67
73
68
- name : Upload built executables
74
- uses : actions/upload-artifact@v3
69
+ uses : actions/upload-artifact@v4
75
70
with :
76
- name : msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
71
+ name : msvc-build-${{ matrix.compiler}}-${{ matrix. arch }}-${{ matrix.config }}-bin
77
72
path : |
78
73
_build/${{ matrix.arch }}/${{ matrix.config }}/*.exe
79
74
_build/${{ matrix.arch }}/${{ matrix.config }}/*.dll
@@ -107,25 +102,20 @@ jobs:
107
102
config : Release
108
103
runs-on : windows-latest
109
104
steps :
110
- - uses : actions/checkout@v3
111
-
112
- - id : setup-llvm
113
- name : Set up LLVM (MSVC)
114
- uses : ./.github/actions/setup-llvm-msvc
115
- if : matrix.compiler == 'clang-cl'
105
+ - uses : actions/checkout@v4
116
106
117
107
- name : Fetch cppwinrt executables
118
108
if : matrix.arch != 'arm64'
119
- uses : actions/download-artifact@v3
109
+ uses : actions/download-artifact@v4
120
110
with :
121
- name : msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
111
+ name : msvc-build-${{ matrix.compiler}}-${{ matrix. arch }}-${{ matrix.config }}-bin
122
112
path : _build/${{ matrix.arch }}/${{ matrix.config }}/
123
113
124
114
- name : Fetch x86 cppwinrt executables (arm64 only)
125
115
if : matrix.arch == 'arm64'
126
- uses : actions/download-artifact@v3
116
+ uses : actions/download-artifact@v4
127
117
with :
128
- name : msvc-build-x86-Release-bin
118
+ name : msvc-build-${{ matrix.compiler}}- x86-Release-bin
129
119
path : _build/x86/Release/
130
120
131
121
- name : Download nuget
@@ -147,7 +137,7 @@ jobs:
147
137
$target_version = "1.2.3.4"
148
138
$props = "Configuration=$target_configuration,Platform=$target_platform,CppWinRTBuildVersion=$target_version"
149
139
if ("${{ matrix.compiler }}" -eq "clang-cl") {
150
- $props += ",Clang=1,PlatformToolset=LLVM_v143,LLVMInstallDir=${{ steps.setup-llvm.outputs.llvm-path }} "
140
+ $props += ",Clang=1,PlatformToolset=ClangCl "
151
141
}
152
142
Add-Content $env:GITHUB_ENV "msbuild_config_props=/p:$props"
153
143
@@ -240,9 +230,9 @@ jobs:
240
230
241
231
- name : Upload arm64 test executables
242
232
if : matrix.arch == 'arm64'
243
- uses : actions/upload-artifact@v3
233
+ uses : actions/upload-artifact@v4
244
234
with :
245
- name : msvc-tests-${{ matrix.arch }}-${{ matrix.config }}-bin
235
+ name : msvc-tests-${{ matrix.test_exe }}-${{ matrix.compiler }}-${{ matrix. arch }}-${{ matrix.config }}-bin
246
236
path : |
247
237
_build/${{ matrix.arch }}/${{ matrix.config }}/*.exe
248
238
_build/${{ matrix.arch }}/${{ matrix.config }}/*.dll
@@ -260,7 +250,7 @@ jobs:
260
250
CMAKE_COLOR_DIAGNOSTICS : 1
261
251
CLICOLOR_FORCE : 1
262
252
steps :
263
- - uses : actions/checkout@v3
253
+ - uses : actions/checkout@v4
264
254
265
255
- name : Install cross compiler
266
256
run : |
@@ -279,7 +269,7 @@ jobs:
279
269
cmake --build build/cross_x64/ --target install -j2
280
270
281
271
- name : Upload cppwinrt.exe
282
- uses : actions/upload-artifact@v3
272
+ uses : actions/upload-artifact@v4
283
273
with :
284
274
name : cross-build-${{ matrix.arch }}-bin
285
275
path : install/bin/cppwinrt.exe
@@ -293,7 +283,7 @@ jobs:
293
283
Deployment : [Component, Standalone]
294
284
runs-on : windows-latest
295
285
steps :
296
- - uses : actions/checkout@v3
286
+ - uses : actions/checkout@v4
297
287
298
288
- name : Download nuget
299
289
run : |
@@ -323,20 +313,22 @@ jobs:
323
313
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" /p:Deployment=${{ matrix.Deployment }} natvis\cppwinrtvisualizer.sln
324
314
325
315
build-msvc-nuget-test :
326
- name : ' Build nuget test'
316
+ name : ' Build nuget test (${{ matrix.arch }}) '
327
317
needs : test-msvc-cppwinrt-build
328
318
strategy :
329
319
matrix :
320
+ compiler :
321
+ - MSVC
330
322
arch : [x86, x64]
331
323
config : [Release]
332
324
runs-on : windows-latest
333
325
steps :
334
- - uses : actions/checkout@v3
326
+ - uses : actions/checkout@v4
335
327
336
328
- name : Fetch cppwinrt executables
337
- uses : actions/download-artifact@v3
329
+ uses : actions/download-artifact@v4
338
330
with :
339
- name : msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
331
+ name : msvc-build-${{ matrix.compiler}}-${{ matrix. arch }}-${{ matrix.config }}-bin
340
332
path : _build/${{ matrix.arch }}/${{ matrix.config }}/
341
333
342
334
- name : Download nuget
@@ -371,17 +363,12 @@ jobs:
371
363
- name : Run nuget test
372
364
run : |
373
365
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" test\nuget\NugetTest.sln
374
- if ($LastExitCode -ne 0) {
375
- echo "::warning::nuget test failed"
376
- }
377
- # FIXME: This build was failing from the start
378
- exit 0
379
366
380
367
build-nuget :
381
368
name : Build nuget package with MSVC
382
369
runs-on : windows-latest
383
370
steps :
384
- - uses : actions/checkout@v3
371
+ - uses : actions/checkout@v4
385
372
386
373
- name : Package
387
374
run : |
@@ -396,7 +383,7 @@ jobs:
396
383
}
397
384
398
385
- name : Upload nuget package artifact
399
- uses : actions/upload-artifact@v3
386
+ uses : actions/upload-artifact@v4
400
387
with :
401
388
name : package
402
389
path : " *.nupkg"
0 commit comments