Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
470 B
Bash
33 lines
470 B
Bash
aa_action() {
|
|
STRING=$1
|
|
shift
|
|
$*
|
|
rc=$?
|
|
if [ $rc -eq 0 ] ; then
|
|
aa_log_success_msg $"$STRING "
|
|
else
|
|
aa_log_failure_msg $"$STRING "
|
|
fi
|
|
return $rc
|
|
}
|
|
|
|
aa_log_success_msg() {
|
|
[ -n "$1" ] && echo -n $1
|
|
echo ": done."
|
|
}
|
|
|
|
aa_log_warning_msg() {
|
|
[ -n "$1" ] && echo -n $1
|
|
echo ": Warning."
|
|
}
|
|
|
|
aa_log_failure_msg() {
|
|
[ -n "$1" ] && echo -n $1
|
|
echo ": Failed."
|
|
}
|
|
|
|
aa_log_skipped_msg() {
|
|
[ -n "$1" ] && echo -n $1
|
|
echo ": Skipped."
|
|
}
|