File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,12 @@ jobs:
132
132
with :
133
133
fetch-depth : 0
134
134
135
+ - name : Setup NuGet
136
+ uses : nuget/setup-nuget@v2
137
+
138
+ - name : Restore NuGet packages
139
+ run : nuget restore rpcs3.sln
140
+
135
141
- name : Setup env
136
142
shell : pwsh
137
143
run : |
@@ -171,7 +177,11 @@ jobs:
171
177
172
178
- name : Compile RPCS3
173
179
shell : pwsh
174
- run : msbuild rpcs3.sln /p:Configuration=Release /v:minimal /p:Platform=x64 /p:CLToolPath=${{ env.CCACHE_BIN_DIR }} /p:UseMultiToolTask=true /p:CustomAfterMicrosoftCommonTargets="${{ github.workspace }}\buildfiles\msvc\ci_only.targets"
180
+ run : msbuild rpcs3.sln /p:Configuration=Release /v:minimal /p:Platform=x64 /p:PreferredToolArchitecture=x64 /p:CLToolPath=${{ env.CCACHE_BIN_DIR }} /p:UseMultiToolTask=true /p:CustomAfterMicrosoftCommonTargets="${{ github.workspace }}\buildfiles\msvc\ci_only.targets"
181
+
182
+ - name : Run Unit Tests
183
+ shell : pwsh
184
+ run : build\lib\Release-x64\rpcs3_test.exe
175
185
176
186
- name : Pack up build artifacts
177
187
run : |
You can’t perform that action at this time.
0 commit comments