Improve output of build-repo.ps1

This commit is contained in:
Markus Fleschutz 2021-04-21 12:05:53 +02:00
parent 0317186fc7
commit 0c50ee42d5

View File

@ -11,8 +11,11 @@ param($RepoDir = "$PWD")
try { try {
$StopWatch = [system.diagnostics.stopwatch]::startNew() $StopWatch = [system.diagnostics.stopwatch]::startNew()
$RepoDir = resolve-path -path "$RepoDir" -relative
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
if (test-path "$RepoDir/CMakeLists.txt") { if (test-path "$RepoDir/CMakeLists.txt") {
"⏳ Building $RepoDir using CMakeLists.txt..." "⏳ Building 📂$RepoDir using CMakeLists.txt ..."
if (-not(test-path "$RepoDir/CMakeBuild")) { if (-not(test-path "$RepoDir/CMakeBuild")) {
& mkdir "$RepoDir/CMakeBuild/" & mkdir "$RepoDir/CMakeBuild/"
} }
@ -25,7 +28,7 @@ try {
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" } if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/configure") { } elseif (test-path "$RepoDir/configure") {
"⏳ Building $RepoDir using 'configure'..." "⏳ Building 📂$RepoDir using 'configure' ..."
set-location "$RepoDir/" set-location "$RepoDir/"
& ./configure & ./configure
@ -35,7 +38,7 @@ try {
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" } if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/autogen.sh") { } elseif (test-path "$RepoDir/autogen.sh") {
"⏳ Building $RepoDir using 'autogen.sh'..." "⏳ Building 📂$RepoDir using 'autogen.sh' ..."
set-location "$RepoDir/" set-location "$RepoDir/"
& ./autogen.sh & ./autogen.sh
@ -45,7 +48,7 @@ try {
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" } if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/Imakefile") { } elseif (test-path "$RepoDir/Imakefile") {
"⏳ Building $RepoDir using Imakefile..." "⏳ Building 📂$RepoDir using Imakefile ..."
set-location "$RepoDir/" set-location "$RepoDir/"
& xmkmf & xmkmf
@ -55,25 +58,25 @@ try {
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" } if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/Makefile") { } elseif (test-path "$RepoDir/Makefile") {
"⏳ Building $RepoDir using Makefile..." "⏳ Building 📂$RepoDir using Makefile..."
set-location "$RepoDir/" set-location "$RepoDir/"
& make -j4 & make -j4
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" } if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/attower/src/build/DevBuild/build.bat") { } elseif (test-path "$RepoDir/attower/src/build/DevBuild/build.bat") {
"⏳ Building $RepoDir using build.bat..." "⏳ Building 📂$RepoDir using build.bat ..."
set-location "$RepoDir/attower/src/build/DevBuild/" set-location "$RepoDir/attower/src/build/DevBuild/"
& ./build.bat build-all-release & ./build.bat build-all-release
if ($lastExitCode -ne "0") { throw "Script 'build.bat' returned error(s)" } if ($lastExitCode -ne "0") { throw "Script 'build.bat' returned error(s)" }
} else { } else {
write-warning "Sorry, no rule found to build $RepoDir" write-warning "Sorry, no rule found to build 📂$RepoDir"
exit 0 exit 0
} }
write-host -foregroundColor green "✔️ Git repository $RepoDir built in $($StopWatch.Elapsed.Seconds) second(s)" "✔️ built Git repository 📂$RepoDir in $($StopWatch.Elapsed.Seconds) second(s)"
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"