We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01a456 commit da5d746Copy full SHA for da5d746
1 file changed
scripts/build-repo.ps1
@@ -33,9 +33,9 @@ function BuildFolder([string]$path) {
33
& cmake ..
34
if ($lastExitCode -ne 0) { throw "Executing 'cmake ..' failed with exit code $lastExitCode" }
35
36
- "⏳ (2/3) Building $dirName by executing 'make -j4'..."
37
- & make -j4
38
- if ($lastExitCode -ne 0) { throw "Executing 'make -j4' failed with exit code $lastExitCode" }
+ "⏳ (2/3) Building $dirName by executing 'make'..."
+ & make
+ if ($lastExitCode -ne 0) { throw "Executing 'make' failed with exit code $lastExitCode" }
39
40
"⏳ (3/3) Testing $dirName by executing 'ctest -V'... (if tests are provided)"
41
& ctest -V
0 commit comments