mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-11-16 12:00:24 +00:00
add build and publish script
This commit is contained in:
31
build_and_publish.sh
Executable file
31
build_and_publish.sh
Executable file
@@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
function assert_success() {
|
||||
"${@}"
|
||||
local status=${?}
|
||||
if [ ${status} -ne 0 ]; then
|
||||
echo "### Error ${status} at: ${BASH_LINENO[*]} ###"
|
||||
exit ${status}
|
||||
fi
|
||||
}
|
||||
|
||||
function build_and_publish() {
|
||||
export RELEASE_MODE=true
|
||||
project="$1"
|
||||
|
||||
assert_success ./gradlew clean "$project:clean" "$project:build" "$project:publishToMavenLocal" "$project:bintrayUpload"
|
||||
}
|
||||
|
||||
pids=()
|
||||
|
||||
while [ -n "$1" ]
|
||||
do
|
||||
build_and_publish "$1" &
|
||||
pids[${#pids[*]}]=$!
|
||||
shift
|
||||
done
|
||||
|
||||
for item in ${pids[*]}
|
||||
do
|
||||
wait "$item"
|
||||
done
|
||||
Reference in New Issue
Block a user