Add make test

This commit is contained in:
Markus Fleschutz 2021-05-22 15:51:36 +02:00
parent 3db6eaacfc
commit 58ed1928dd

View File

@ -22,6 +22,9 @@ function MakeDir { param($Path)
& make -j4
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
& make test
if ($lastExitCode -ne "0") { throw "Executing 'make test' has failed" }
} elseif (test-path "$Path/configure") {
"⏳ Building 📂$DirName using 'configure'..."
set-location "$Path/"