2022-10-12 14:22:22 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
function error_handler() {
|
|
|
|
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
|
|
exit "$2"
|
|
|
|
}
|
|
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
|
|
|
|
# HELP: git adds and commits the entire BPMN models directory, including all process groups
|
|
|
|
|
|
|
|
bpmn_models_absolute_dir="$1"
|
|
|
|
git_commit_message="$2"
|
2022-12-15 17:52:53 +00:00
|
|
|
git_branch="$3"
|
2022-10-12 14:22:22 +00:00
|
|
|
|
2023-02-20 21:21:31 +00:00
|
|
|
if [[ -z "${3:-}" ]]; then
|
|
|
|
>&2 echo "usage: $(basename "${0}") [bpmn_models_absolute_dir] [git_commit_message] [git_branch]"
|
2023-01-20 20:11:23 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-12-19 16:15:05 +00:00
|
|
|
function failed_to_get_lock() {
|
|
|
|
>&2 echo "ERROR: Failed to get lock."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
function run() {
|
2023-02-20 21:21:31 +00:00
|
|
|
cd "${bpmn_models_absolute_dir}"
|
2022-12-19 16:15:05 +00:00
|
|
|
git add .
|
|
|
|
|
|
|
|
# https://unix.stackexchange.com/a/155077/456630
|
|
|
|
if [ -z "$(git status --porcelain)" ]; then
|
|
|
|
echo "No changes to commit"
|
2023-02-20 21:21:31 +00:00
|
|
|
return
|
2022-12-19 16:15:05 +00:00
|
|
|
fi
|
2023-02-20 21:21:31 +00:00
|
|
|
|
|
|
|
git commit -m "${git_commit_message}"
|
|
|
|
git push --set-upstream origin "${git_branch}"
|
2022-12-19 16:15:05 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 21:28:35 +00:00
|
|
|
exec {lock_fd}>/var/lock/spiff-workflow-git-lock || failed_to_get_lock
|
2023-02-20 21:21:31 +00:00
|
|
|
flock --timeout 60 "${lock_fd}" || failed_to_get_lock
|
2022-12-19 16:15:05 +00:00
|
|
|
run
|
2023-02-20 21:21:31 +00:00
|
|
|
flock -u "${lock_fd}"
|