github: msbuild compile with -j 3

This commit is contained in:
Wilson Snyder 2023-02-03 18:47:54 -05:00
parent c7ed73e249
commit 15c163c12e
2 changed files with 3 additions and 3 deletions

View File

@ -4,12 +4,12 @@ if (-Not (Test-Path $PWD/../.ccache/win_bison.exe)) {
mkdir build
cd build
cmake .. --install-prefix $PWD/../../../.ccache
cmake --build . --config Release
cmake --build . --config Release -j 3
cmake --install . --prefix $PWD/../../../.ccache
cd ../..
}
mkdir build
cd build
cmake .. --install-prefix $PWD/../install
cmake --build . --config Release
cmake --build . --config Release -j 3
cmake --install . --prefix $PWD/../install

View File

@ -4,7 +4,7 @@ cd examples/cmake_tracing_c
mkdir build
cd build
cmake ..
cmake --build . --config Release
cmake --build . --config Release -j 3
Release/example.exe
cd ..
Remove-Item -path build -recurse