mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 14:30:42 +02:00
Add gradle build
This commit is contained in:
parent
be62a1ef5a
commit
38a2093731
@ -14,16 +14,14 @@ function MakeDir { param($Path)
|
|||||||
if (-not(test-path "$Path/BuildFiles/" -pathType container)) {
|
if (-not(test-path "$Path/BuildFiles/" -pathType container)) {
|
||||||
& mkdir "$Path/BuildFiles/"
|
& mkdir "$Path/BuildFiles/"
|
||||||
}
|
}
|
||||||
|
|
||||||
set-location "$Path/BuildFiles/"
|
set-location "$Path/BuildFiles/"
|
||||||
|
|
||||||
& cmake ..
|
& cmake ..
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
|
||||||
|
|
||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
|
|
||||||
set-location ..
|
|
||||||
|
|
||||||
} elseif (test-path "$Path/configure") {
|
} elseif (test-path "$Path/configure") {
|
||||||
"⏳ Building 📂$DirName using 'configure' ..."
|
"⏳ Building 📂$DirName using 'configure' ..."
|
||||||
set-location "$Path/"
|
set-location "$Path/"
|
||||||
@ -44,6 +42,16 @@ function MakeDir { param($Path)
|
|||||||
& 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 "$Path/build.gradle") {
|
||||||
|
"⏳ Building 📂$DirName using build.gradle ..."
|
||||||
|
set-location "$Path"
|
||||||
|
|
||||||
|
& gradle build
|
||||||
|
if ($lastExitCode -ne "0") { throw "'gradle build' has failed" }
|
||||||
|
|
||||||
|
& gradle test
|
||||||
|
if ($lastExitCode -ne "0") { throw "'gradle test' has failed" }
|
||||||
|
|
||||||
} elseif (test-path "$Path/Imakefile") {
|
} elseif (test-path "$Path/Imakefile") {
|
||||||
"⏳ Building 📂$DirName using Imakefile ..."
|
"⏳ Building 📂$DirName using Imakefile ..."
|
||||||
set-location "$RepoDir/"
|
set-location "$RepoDir/"
|
||||||
@ -72,7 +80,7 @@ function MakeDir { param($Path)
|
|||||||
"⏳ No make rule found, but trying the subdirectory 📂$DirName ..."
|
"⏳ No make rule found, but trying the subdirectory 📂$DirName ..."
|
||||||
MakeDir "$Path/$DirName"
|
MakeDir "$Path/$DirName"
|
||||||
} else {
|
} else {
|
||||||
write-warning "Sorry, no make rule found in 📂$DirName"
|
write-warning "Sorry, no make rule applies to: 📂$DirName"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -83,7 +91,9 @@ try {
|
|||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
$RepoDirName = (get-item "$RepoDir").Name
|
$RepoDirName = (get-item "$RepoDir").Name
|
||||||
|
|
||||||
|
$PreviousPath = get-location
|
||||||
MakeDir "$RepoDir"
|
MakeDir "$RepoDir"
|
||||||
|
set-location "$PreviousPath"
|
||||||
|
|
||||||
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
||||||
"✔️ built Git repository 📂$RepoDirName in $Elapsed sec."
|
"✔️ built Git repository 📂$RepoDirName in $Elapsed sec."
|
||||||
|
Loading…
Reference in New Issue
Block a user