Add explicit /m to msbuild.exe invocations

* Without this by default msbuild doesn't build in parallel.
This commit is contained in:
baldurk
2021-02-13 22:18:53 +00:00
parent fc2b2c11cc
commit 4b65d7f841
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ jobs:
- name: Set up Visual Studio tools
uses: microsoft/setup-msbuild@v1.0.2
- name: Building solution
run: msbuild.exe renderdoc.sln "/p:Configuration=${{ matrix.configuration }}" "/p:Platform=${{ matrix.platform }}" "/p:PlatformToolset=${{ matrix.toolset }}"
run: msbuild.exe renderdoc.sln "/m" "/p:Configuration=${{ matrix.configuration }}" "/p:Platform=${{ matrix.platform }}" "/p:PlatformToolset=${{ matrix.toolset }}"
shell: powershell
- if: matrix.configuration == 'Development'
name: Running core unit tests