-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·76 lines (70 loc) · 2.33 KB
/
build.sh
File metadata and controls
executable file
·76 lines (70 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
set -eu -o pipefail -o errtrace
shopt -s inherit_errexit nullglob # compat"${BASH_COMPAT=42}"
source "$(dirname "${BASH_SOURCE[0]}")/buildtools/build_info.rc"
source "$(dirname "${BASH_SOURCE[0]}")/buildtools/utils.rc"
__execute_stage_driver_filename=
__execute_stage_stage_name=
function __execute_stage() {
local _stage="${1}"
shift
message "EXECUTING:${_stage}:'${*}'"
{
__execute_stage_driver_filename="$(dirname "${BASH_SOURCE[0]}")/buildtools/drivers/${_stage}.rc"
__execute_stage_stage_name="${_stage}"
function execute_stage() {
abort "The driver: '${__execute_stage_driver_filename}' does not define a function 'execute_stage'"
}
function stage_name() {
abort "The driver: '${__execute_stage_driver_filename}' does not define a function 'stage_name'"
}
# shellcheck disable=SC1090
source "${__execute_stage_driver_filename}" || abort "Driver not found: '${__execute_stage_driver_filename}'"
function stage_name() {
echo "'${__execute_stage_stage_name}'"
}
("execute_stage" "$@" && message "DONE:${_stage}") || abort "FAILED:${_stage}"
} || {
message "FAILED:${_stage}"
return 1
}
return 0
}
function execute() {
if [[ "${#@}" == 0 ]]; then
return 0
fi
local _first="${1}"
shift
if [[ "${_first}" == BUILD ]]; then
execute clean prepare doc test "${@}"
elif [[ "${_first}" == DOC ]]; then
execute clean prepare doc "${@}"
elif [[ ${_first} == DOC ]]; then
execute clean prepare doc "${@}"
elif [[ ${_first} == TEST ]]; then
execute clean prepare test "${@}"
elif [[ ${_first} == COVERAGE ]]; then
execute clean prepare coverage "${@}"
elif [[ ${_first} == PACKAGE ]]; then
execute clean prepare test:::true build:snapshot test:snapshot::true "${@}"
elif [[ ${_first} == DEPLOY ]]; then
execute PACKAGE push:snapshot "${@}"
elif [[ ${_first} == RELEASE ]]; then
execute clean release-precheck prepare test:::true build:release test:release::true push:release release-postmortem "${@}"
elif [[ ${_first} == PUBLISH_DOC ]]; then
execute clean prepare publish-doc "${@}"
else
IFS=':' read -r -a _args <<<"${_first}"
__execute_stage "${_args[@]}" || exit 1
execute "${@}"
fi
}
function main() {
if [[ "${#@}" == 0 ]]; then
execute BUILD
else
execute "${@}"
fi
}
main "${@}"