summaryrefslogtreecommitdiffhomepage
path: root/build.sh
blob: 8c0d4b02a1a3327ebe66e8b15965a8cae95a2471 (plain)
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
#!/bin/sh
# Copyright (c) 2016, 2017 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
#

for __ in $(find subr -name *.subr); do . "${__}"; done;
ex_setup_args "${@}"; ex_setup_env; ex_setup_checks; ex_setup_subdirs; ex_pkg_state_init;
ex_log_msg info "Build started by ${BUILD_USER:=${USER}}@${BUILD_HNAME:=$(hostname)} at ${BUILD_DATE_START}.";
ex_log_env_vars "build (global)" ${LOG_ENV_VARS};

for BUILD_TARGET_META in invariants ${BUILD_TARGETS_META:-world}; do
	for BUILD_TARGET_LC in $(ex_get_var_unsafe "$(ex_toupper "${BUILD_TARGET_META}")_TARGET"); do
		BUILD_TARGET="$(ex_toupper "${BUILD_TARGET_LC}")";
		BUILD_PACKAGES="$(ex_get_var_unsafe ${BUILD_TARGET}_PACKAGES)";
		if [ "${BUILD_TARGET}" != "INVARIANTS" ]\
		&& [ -n "${BUILD_PACKAGES_RESTART}" ]; then
			BUILD_PACKAGES="$(ex_lfilter "${BUILD_PACKAGES}" "${BUILD_PACKAGES_RESTART}")";
		fi;
		ex_log_msg info "Starting \`${BUILD_TARGET_LC}' build target...";
		for PKG_NAME in ${BUILD_PACKAGES}; do
			ex_log_msg info "Starting \`${PKG_NAME}' build...";
			ex_pkg_dispatch "${BUILD_TARGET}" "${PKG_NAME}"	\
				"${ARG_RESTART}" "${ARG_RESTART_AT}";
			BUILD_SCRIPT_RC=${?};
			case ${BUILD_SCRIPT_RC} in
			0) : $((BUILD_NFINI+=1));
			   if [ "${ARG_VERBOSE2:-0}" -eq 1 ]; then
				cat "${WORKDIR}/${PKG_NAME}_stdout.log";
			   fi;
			   ex_log_msg succ "Finished \`${PKG_NAME}' build."; ;;
			*) : $((BUILD_NFAIL+=1));
			   if [ "${ARG_RELAXED:-0}" -eq 1 ]; then
				ex_log_msg fail "Build failed in \`${PKG_NAME}', check \`${WORKDIR}/${PKG_NAME}_std{err,out}.log' for details.";
				BUILD_PKGS_FAILED="${BUILD_PKGS_FAILED:+${BUILD_PKGS_FAILED} }${PKG_NAME}";
				continue;
			   else
				ex_log_msg fail "${WORKDIR}/${PKG_NAME}_stdout.log:";
				cat "${WORKDIR}/${PKG_NAME}_stdout.log";
				ex_log_msg fail "${WORKDIR}/${PKG_NAME}_stderr.log:";
				cat "${WORKDIR}/${PKG_NAME}_stderr.log";
				ex_log_msg fail "Build failed in \`${PKG_NAME}'.";
				break;
			   fi; ;;
			esac;
		done;
		if [ "${BUILD_SCRIPT_RC:-0}" -ne 0 ]; then
			break;
		else
			ex_log_msg succ "Finished \`${BUILD_TARGET_LC}' build target.";
		fi;
	done;
done;

ex_pkg_state_fini;
ex_log_msg info "${BUILD_NFINI} finished, ${BUILD_NSKIP} skipped, and ${BUILD_NFAIL} failed builds in ${BUILD_NBUILT} build script(s).";
ex_log_msg info "Build time: ${BUILD_TIMES_HOURS} hour(s), ${BUILD_TIMES_MINUTES} minute(s), and ${BUILD_TIMES_SECS} second(s).";
if [ ${ARG_RELAXED:-0} -eq 1 ]\
&& [ -n "${BUILD_PKGS_FAILED}" ]; then
	ex_log_msg info "Build script failure(s) in: ${BUILD_PKGS_FAILED}.";
fi;
exit "${BUILD_SCRIPT_RC:-0}"

# vim:filetype=sh