diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-28 16:58:32 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-28 16:58:32 -0400 |
commit | d2294841b2df66f4e684b5eed1cae955cea21cf8 (patch) | |
tree | 2b48fd480469514c4cf449ee02ace1912d874544 /buildscripts_support_functions | |
parent | 853cf3928cba51fe1e84a51316f9698c55ba4ad4 (diff) |
SL-18837: Get buildscripts_support_functions from sling-buildscripts
and use these variants for GitHub builds.
Diffstat (limited to 'buildscripts_support_functions')
-rw-r--r-- | buildscripts_support_functions | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/buildscripts_support_functions b/buildscripts_support_functions new file mode 100644 index 0000000000..557d2f80fb --- /dev/null +++ b/buildscripts_support_functions @@ -0,0 +1,60 @@ +# standalone functions from sling-buildscripts + +set_build_number_to_revision() +{ + record_event "buildNumber $revision" +} + +record_event() +{ + echo "=== $@" +} + +begin_section() +{ + record_event "START $*" + sections+=("$*") +} + +end_section() +{ + # accommodate dumb Mac bash 3, which doesn't understand array[-1] + local last=$(( ${#sections[@]} - 1 )) + record_event "END ${*:-${sections[$last]}}" + unset "sections[$last]" +} + +record_success() +{ + record_event "SUCCESS $*" +} + +record_failure() +{ + record_event "FAILURE $*" >&2 +} + +fatal() +{ + record_failure "$@" + finalize false + exit 1 +} + +# redefined fail for backward compatibility +alias fail=fatal + +pass() +{ + exit 0 +} + +export -f set_build_number_to_revision +export -f record_event +export -f begin_section +export -f end_section +export -f record_success +export -f record_failure +export -f fatal +export -f pass +export sections |