File tree 2 files changed +23
-5
lines changed
2 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,21 @@ jobs:
19
19
uses : actions/setup-dotnet@v4
20
20
with :
21
21
dotnet-version : 8.0
22
+
23
+ - name : Setup msbuild
24
+ uses : microsoft/setup-msbuild@v2
25
+ - name : Setup VSTest Path
26
+
27
+
22
28
- name : Test
23
29
run : |
24
- $Env:WORKFLOW_VERSION = 'v8.1'
25
30
regsvr32 $Env:GITHUB_WORKSPACE/AtemSDK/v8.1.0/BMDSwitcherAPI.dll /s
26
31
regsvr32 $Env:GITHUB_WORKSPACE/AtemSDK/v8.1.0/BMDSwitcherAPI64.dll /s
27
- dotnet test LibAtem.MockTests -c Release
32
+
33
+ dotnet restore
34
+
35
+ msbuild .\LibAtem.ComparisonTests.sln /property:Platform=v8.1 /property:Configuration=Release
36
+ vstest.console.exe LibAtem.MockTests/bin/v8.1/Release/net8.0-windows/LibAtem.MockTests.dll
28
37
test_v8_1_1_-_v9_5_0 :
29
38
runs-on : windows-latest
30
39
steps :
41
50
uses : actions/setup-dotnet@v4
42
51
with :
43
52
dotnet-version : 8.0
53
+
54
+ - name : Setup msbuild
55
+ uses : microsoft/setup-msbuild@v2
56
+ - name : Setup VSTest Path
57
+
58
+
44
59
- name : Test
45
60
run : |
46
- $Env:WORKFLOW_VERSION = 'v8.1.1'
47
61
# regsvr32 $Env:GITHUB_WORKSPACE/AtemSDK/v9.5.0/BMDSwitcherAPI.dll /s
48
62
regsvr32 $Env:GITHUB_WORKSPACE/AtemSDK/v9.5.0/BMDSwitcherAPI64.dll /s
49
- dotnet test LibAtem.MockTests -c Release
63
+
64
+ dotnet restore
65
+
66
+ msbuild .\LibAtem.ComparisonTests.sln /property:Platform=v8.1.1 /property:Configuration=Release
67
+ vstest.console.exe LibAtem.MockTests/bin/v8.1.1/Release/net8.0-windows/LibAtem.MockTests.dll
You can’t perform that action at this time.
0 commit comments