6 # The contents of this file are subject to the terms of the
7 # Common Development and Distribution License (the "License").
8 # You may not use this file except in compliance with the License.
10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11 # or http://www.opensolaris.org/os/licensing.
12 # See the License for the specific language governing permissions
13 # and limitations under the License.
15 # When distributing Covered Code, include this CDDL HEADER in each
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 # If applicable, add the following below this CDDL HEADER, with the
18 # fields enclosed by brackets "[]" replaced with your own identifying
19 # information: Portions Copyright [yyyy] [name of copyright owner]
25 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
26 # Copyright 2008, 2010, Richard Lowe
27 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
28 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
29 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
31 # Based on the nightly script from the integration folks,
32 # Mostly modified and owned by mike_s.
33 # Changes also by kjc, dmk.
35 # -i on the command line, means fast options, so when it's on the
36 # command line (only), check builds are skipped no matter what
37 # the setting of their individual flags are in NIGHTLY_OPTIONS.
39 # OPTHOME may be set in the environment to override /opt
43 # The CDPATH variable causes ksh's `cd' builtin to emit messages to stdout
44 # under certain circumstances, which can really screw things up; unset it.
48 # Get the absolute path of the nightly script that the user invoked. This
49 # may be a relative path, and we need to do this before changing directory.
50 nightly_path
=`whence $0`
54 print
-u2 "nightly: $*"
59 # Function to do a DEBUG and non-DEBUG build. Needed because we might
60 # need to do another for the source build, and since we only deliver DEBUG or
65 function normal_build
{
67 typeset orig_p_FLAG
="$p_FLAG"
69 if [ "$D_FLAG" = "n" ]; then
70 set_non_debug_build_flags
81 # usage: run_hook HOOKNAME ARGS...
83 # If variable "$HOOKNAME" is defined, insert a section header into
84 # our logs and then run the command with ARGS
88 eval HOOKCMD
=\$
$HOOKNAME
91 if [ -n "$HOOKCMD" ]; then
93 echo "\n==== Running $HOOKNAME command: $HOOKCMD ====\n"
94 ( $HOOKCMD "$@" 2>&1 )
95 if [ "$?" -ne 0 ]; then
96 # Let exit status propagate up
101 if [ -f $TMPDIR/abort
]; then
103 echo "\nAborting at request of $HOOKNAME"
109 # Return library search directive as function of given root.
111 echo "-L$1/lib -L$1/usr/lib"
114 # Return header search directive as function of given root.
116 echo "-I$1/usr/include"
120 # Function to do the build, including package generation.
122 # - LABEL is used to tag build output.
126 INSTALLOG
=install-
${MACH}
130 export ENVLDLIBS1
=`myldlibs $ROOT`
131 export ENVCPPFLAGS1
=`myheaders $ROOT`
136 # Before we build anything via dmake, we need to install
137 # bmake-ified headers to the proto area
139 if ! make -C $SRCTOP/include all
install DESTDIR
=$ROOT; then
142 fatal_error
"cannot install headers"
146 # Build the legacy part of the source
148 echo "\n==== Building legacy source at `date` ($LABEL) ====\n"
151 echo "\n==== dmake install ====\n" >&2
152 if ! /bin
/time $MAKE -e install; then
158 # Build the new part of the source
160 echo "\n==== bmake build ====\n" >&2
161 if ! /bin
/time env
-i PATH
=${GCC_ROOT}/bin
:/usr
/bin \
163 make -C $SRCTOP -j $DMAKE_MAX_JOBS VERBOSE
=yes build DESTDIR
=$ROOT; then
168 echo "\n==== Ended OS-Net source build at `date` ($LABEL) ====\n"
173 if [ "$p_FLAG" = "y" -a "$this_build_ok" = "y" ]; then
174 if [ -d $SRC/pkg
]; then
175 echo "\n==== Creating $LABEL packages at `date` ====\n"
176 echo "Clearing out $PKGARCHIVE ..."
180 rm -f $SRC/pkg
/${INSTALLOG}.out
182 echo "\n==== dmake -C $SRC/pkg install ====\n" >&2
183 if ! /bin
/time $MAKE -e install; then
189 # Handle it gracefully if -p was set but there so
192 echo "\n==== No $LABEL packages to build ====\n"
195 echo "\n==== Not creating $LABEL packages ====\n"
200 # Build and install the onbld tools.
202 # usage: build_tools DESTROOT
204 # returns non-zero status if the build was successful.
206 function build_tools
{
209 INSTALLOG
=install-
${MACH}
211 echo "\n==== Building tools at `date` ====\n" \
213 rm -f ${TOOLS}/${INSTALLOG}.out
215 if ! $MAKE TOOLS_PROTO
=${DESTROOT} -e install; then
222 # Set up to use locally installed tools.
224 # usage: use_tools TOOLSROOT
230 # If we're not building ON workspace, then the TOOLSROOT
231 # settings here are clearly ignored by the workspace
232 # makefiles, prepending nonexistent directories to PATH is
233 # harmless, and we clearly do not wish to override
236 # If we're building an ON workspace, then the prepended PATH
237 # elements should supercede the preexisting ONBLD_TOOLS paths,
238 # and we want to override ONBLD_TOOLS to catch the tools that
239 # don't have specific path env vars here.
241 # So the only conditional behavior is overriding ONBLD_TOOLS,
242 # and we check for "an ON workspace" by looking for
243 # ${TOOLSROOT}/opt/onbld.
246 STABS
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/stabs
248 CTFSTABS
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/ctfstabs
250 GENOFFSETS
=${TOOLSROOT}/opt
/onbld
/bin
/genoffsets
254 PATH
="${TOOLSROOT}/opt/onbld/bin/${MACH}:${PATH}"
255 PATH
="${TOOLSROOT}/opt/onbld/bin:${PATH}"
258 if [ -d "${TOOLSROOT}/opt/onbld" ]; then
259 ONBLD_TOOLS
=${TOOLSROOT}/opt
/onbld
263 echo "\n==== New environment settings. ====\n"
264 echo "STABS=${STABS}"
265 echo "CTFSTABS=${CTFSTABS}"
267 echo "ONBLD_TOOLS=${ONBLD_TOOLS}"
271 # wrapper over wsdiff.
272 # usage: do_wsdiff LABEL OLDPROTO NEWPROTO
281 echo "\n==== Getting object changes since last build at `date`" \
282 "($label) ====\n" >&2
283 $wsdiff -s -r ${TMPDIR}/wsdiff.results
$oldproto $newproto >&2
284 echo "\n==== Object changes determined at `date` ($label) ====\n" >&2
288 # Functions for setting build flags (DEBUG/non-DEBUG). Keep them
292 function set_non_debug_build_flags
{
293 export RELEASE_BUILD
; RELEASE_BUILD
=
298 function set_debug_build_flags
{
307 if [ "$OPTHOME" = "" ]; then
312 USAGE
='Usage: nightly [-in] [-V VERS ] [env_file]
315 -i Fast incremental options (no clobber, check)
316 -V VERS set the build version string to VERS
318 <env_file> file in Bourne shell syntax that sets and exports
319 variables that configure the operation of this script and many of
320 the scripts this one calls.
322 non-DEBUG is the default build type. Build options can be set in the
323 NIGHTLY_OPTIONS variable in the <env_file> as follows:
325 -A check for ABI differences in .so files
326 -C check for cstyle/hdrchk errors
327 -D do a build with DEBUG on
328 -G gate keeper default group of options (-au)
329 -I integration engineer default group of options (-ampu)
330 -M do not run pmodes (safe file permission checker)
331 -N do not run protocmp
332 -R default group of options for building a release (-mp)
333 -U update proto area in the parent
334 -V VERS set the build version string to VERS
335 -i do an incremental build (no "make clobber")
336 -m send mail to $MAILTO at end of build
338 -r check ELF runtime attributes in the proto area
339 -u update proto_list_$MACH and friends in the parent workspace
340 -w report on differences between previous and current proto areas
343 # A log file will be generated under the name $LOGFILE
344 # for partially completed build and log.`date '+%F'`
345 # in the same directory for fully completed builds.
348 # default values for low-level FLAGS; G I R are group FLAGS
352 i_FLAG
=n
; i_CMD_LINE_FLAG
=n
370 while getopts +iV
:W FLAG
373 i
) i_FLAG
=y
; i_CMD_LINE_FLAG
=y
386 # correct argument count after options
387 shift `expr $OPTIND - 1`
389 # test that the path to the environment-setting file was given
390 if [ $# -ne 1 ]; then
391 envfile
=$
(dirname $0)/env.sh
399 LC_ALL
=C
; export LC_ALL
400 LC_COLLATE
=C
; export LC_COLLATE
401 LC_CTYPE
=C
; export LC_CTYPE
402 LC_MESSAGES
=C
; export LC_MESSAGES
403 LC_MONETARY
=C
; export LC_MONETARY
404 LC_NUMERIC
=C
; export LC_NUMERIC
405 LC_TIME
=C
; export LC_TIME
407 # clear environment variables we know to be bad for the build
409 unset LD_AUDIT LD_AUDIT_32 LD_AUDIT_64
410 unset LD_BIND_NOW LD_BIND_NOW_32 LD_BIND_NOW_64
411 unset LD_BREADTH LD_BREADTH_32 LD_BREADTH_64
412 unset LD_CONFIG LD_CONFIG_32 LD_CONFIG_64
413 unset LD_DEBUG LD_DEBUG_32 LD_DEBUG_64
414 unset LD_DEMANGLE LD_DEMANGLE_32 LD_DEMANGLE_64
415 unset LD_FLAGS LD_FLAGS_32 LD_FLAGS_64
416 unset LD_LIBRARY_PATH LD_LIBRARY_PATH_32 LD_LIBRARY_PATH_64
417 unset LD_LOADFLTR LD_LOADFLTR_32 LD_LOADFLTR_64
418 unset LD_NOAUDIT LD_NOAUDIT_32 LD_NOAUDIT_64
419 unset LD_NOAUXFLTR LD_NOAUXFLTR_32 LD_NOAUXFLTR_64
420 unset LD_NOCONFIG LD_NOCONFIG_32 LD_NOCONFIG_64
421 unset LD_NODIRCONFIG LD_NODIRCONFIG_32 LD_NODIRCONFIG_64
422 unset LD_NODIRECT LD_NODIRECT_32 LD_NODIRECT_64
423 unset LD_NOLAZYLOAD LD_NOLAZYLOAD_32 LD_NOLAZYLOAD_64
424 unset LD_NOOBJALTER LD_NOOBJALTER_32 LD_NOOBJALTER_64
425 unset LD_NOVERSION LD_NOVERSION_32 LD_NOVERSION_64
426 unset LD_ORIGIN LD_ORIGIN_32 LD_ORIGIN_64
427 unset LD_PRELOAD LD_PRELOAD_32 LD_PRELOAD_64
428 unset LD_PROFILE LD_PROFILE_32 LD_PROFILE_64
440 # To get ONBLD_TOOLS from the environment, it must come from the env file.
441 # If it comes interactively, it is generally TOOLS_PROTO, which will be
442 # clobbered before the compiler version checks, which will therefore fail.
447 # Setup environmental variables
449 if [ -f $envfile ]; then
452 echo "Cannot find env file $envfile"
456 # Check if we have sufficient data to continue...
458 fatal_error
"Error: Variable SRCTOP not set."
459 [[ -d "${SRCTOP}" ]] || \
460 fatal_error
"Error: ${SRCTOP} is not a directory."
461 [[ -f "${SRCTOP}/usr/src/Makefile" ]] || \
462 fatal_error
"Error: ${SRCTOP}/usr/src/Makefile not found."
465 # place ourselves in a new task, respecting BUILD_PROJECT if set.
467 if [ -z "$BUILD_PROJECT" ]; then
468 /usr
/bin
/newtask
-c $$
470 /usr
/bin
/newtask
-c $$
-p $BUILD_PROJECT
473 ps
-o taskid
= -p $$ |
read build_taskid
474 ps
-o project
= -p $$ |
read build_project
477 # See if NIGHTLY_OPTIONS is set
479 if [ "$NIGHTLY_OPTIONS" = "" ]; then
480 NIGHTLY_OPTIONS
="-aBm"
484 # Note: changes to the option letters here should also be applied to the
485 # bldenv script. `d' is listed for backward compatibility.
487 NIGHTLY_OPTIONS
=-${NIGHTLY_OPTIONS#-}
489 while getopts +ABCDdfGIiMmNpRrwW FLAG
$NIGHTLY_OPTIONS
495 ;; # old version of D
529 if [ -z "$MAILTO" -o "$MAILTO" = "nobody" ]; then
530 MAILTO
=`/usr/bin/id -un`
534 PATH
="$OPTHOME/onbld/bin:$OPTHOME/onbld/bin/${MACH}:/usr/ccs/bin"
535 PATH
="$PATH:/usr/bin:/usr/sbin:/usr/ucb"
536 PATH
="$PATH:/usr/openwin/bin:/usr/sfw/bin:/opt/sfw/bin:.:$OPTHOME/SUNWspro/bin"
539 # roots of source trees, both relative to $SRC and absolute.
543 PROTOCMPTERSE
="protocmp.terse -gu"
545 # have we set RELEASE_DATE in our env file?
546 if [ -z "$RELEASE_DATE" ]; then
547 RELEASE_DATE
=$
(LC_ALL
=C
date +"%B %Y")
549 BUILD_DATE
=$
(LC_ALL
=C
date +%Y-
%b-
%d
)
550 BASEWSDIR
=$
(basename $SRCTOP)
551 DEV_CM
="\"@(#)illumos Development: $LOGNAME $BUILD_DATE [$BASEWSDIR]\""
552 RELEASE_MICRO
=$
(( ($
(date +%Y
) * 12 + $
(date +%m
) - 1) - (2010 * 12 + 8 - 1) ))
554 # we export POUND_SIGN, RELEASE_DATE and DEV_CM to speed up the build process
555 # by avoiding repeated shell invocations to evaluate Makefile.master
557 export POUND_SIGN RELEASE_DATE DEV_CM RELEASE_MICRO
559 maketype
="distributed"
560 if [[ -z "$MAKE" ]]; then
562 elif [[ ! -x "$MAKE" ]]; then
563 echo "\$MAKE is set to garbage in the environment"
570 if [[ $DMAKE_MAX_JOBS != +([0-9]) ||
$DMAKE_MAX_JOBS -eq 0 ]]
573 if [[ -f $HOME/.
make.machines
]]
575 # Note: there is a hard tab and space character in the []s
577 egrep -i "^[ ]*$hostname[ \.]" \
578 $HOME/.
make.machines |
read host jobs
582 if [[ $maxjobs != +([0-9]) ||
$maxjobs -eq 0 ]]
588 export DMAKE_MAX_JOBS
=$maxjobs
594 if [ -z "${ROOT}" ]; then
595 echo "ROOT must be set."
600 # if -V flag was given, reset VERSION to V_ARG
602 if [ "$V_FLAG" = "y" ]; then
606 TMPDIR
="/tmp/nightly.tmpdir.$$"
609 mkdir
-p $TMPDIR ||
exit 1
611 # Tools should only be built non-DEBUG. Keep track of the tools proto
612 # area path relative to $TOOLS, because the latter changes in an
615 # TOOLS_PROTO is included below for builds other than usr/src/tools
616 # that look for this location. For usr/src/tools, this will be
617 # overridden on the $MAKE command line in build_tools().
620 TOOLS_PROTO_REL
=proto
/root_
${MACH}-nd
621 TOOLS_PROTO
=${TOOLS}/${TOOLS_PROTO_REL}; export TOOLS_PROTO
623 unset CFLAGS LD_LIBRARY_PATH LDFLAGS
625 # create directories that are automatically removed if the nightly script
626 # fails to start correctly
630 while [ ! -d $dir ]; do
636 for dir
in $toadd; do
638 newlist
="$dir $newlist"
641 [ -z "$torm" ] ||
rmdir $torm
645 newdirlist
="$newlist $newdirlist"
650 [ -d $SRCTOP ] || newdir
$SRCTOP ||
exit 1
652 # since this script assumes the build is from full source, it nullifies
653 # variables likely to have been set by a "ws" script; nullification
654 # confines the search space for headers and libraries to the proto area
655 # built from this immediate source.
664 export ENVLDLIBS3 ENVCPPFLAGS1 ENVCPPFLAGS2 ENVCPPFLAGS3 ENVCPPFLAGS4 \
665 ENVLDLIBS1 ENVLDLIBS2
668 # Juggle the logs and optionally send mail on completion.
671 function logshuffle
{
672 LLOG
="$ATLOG/log.`date '+%F.%H:%M'`"
673 if [ -f $LLOG -o -d $LLOG ]; then
679 if [ "$build_ok" = "y" ]; then
680 mv $ATLOG/proto_list_
${MACH} $LLOG
682 if [ -f $ATLOG/proto_list_tools_
${MACH} ]; then
683 mv $ATLOG/proto_list_tools_
${MACH} $LLOG
686 if [ -f $TMPDIR/wsdiff.results
]; then
687 mv $TMPDIR/wsdiff.results
$LLOG
690 if [ -f $TMPDIR/wsdiff-nd.results
]; then
691 mv $TMPDIR/wsdiff-nd.results
$LLOG
708 if [[ $state != "Interrupted" && $build_extras_ok != "y" ]]; then
712 NIGHTLY_STATUS
=$state
713 export NIGHTLY_STATUS
715 run_hook POST_NIGHTLY
$state
716 run_hook SYS_POST_NIGHTLY
$state
718 echo "Subject: Nightly ${MACH} Build of `basename ${SRCTOP}` ${state}." \
720 cat $build_time_file $mail_msg_file \
722 if [ "$m_FLAG" = "y" ]; then
723 /usr
/bin
/mail ${MAILTO} < ${LLOG}/mail_msg
730 # Remove the temporary files on any exit
736 while [ $# -gt 0 ]; do
743 function cleanup_signal
{
745 # this will trigger cleanup(), above.
750 trap cleanup_signal
1 2 3 15
755 # Create mail_msg_file
757 mail_msg_file
="${TMPDIR}/mail_msg"
759 build_time_file
="${TMPDIR}/build_time"
763 # Move old LOGFILE aside
765 if [ -f $LOGFILE ]; then
766 mv -f $LOGFILE ${LOGFILE}-
769 mkfifo ${TMPDIR}/err.fifo
${TMPDIR}/out.fifo
770 tee $mail_msg_file < ${TMPDIR}/err.fifo
>> $LOGFILE &
772 tee ${TMPDIR}/stdout.txt
< ${TMPDIR}/out.fifo
>> $LOGFILE &
774 exec > ${TMPDIR}/out.fifo
775 exec 2> ${TMPDIR}/err.fifo
782 echo "\n==== Nightly $maketype build started: $START_DATE ====" | \
783 tee -a $build_time_file
785 run_hook SYS_PRE_NIGHTLY
788 echo "\n==== list of environment variables ====\n"
791 echo "Building $VERSION
792 on $(uname -srv)" >&2
794 if [[ ! -f $SRC/Makefile
]]; then
796 echo "\nUnable to find \"Makefile\" in $SRC." >&2
800 # Save the current proto area if we're comparing against the last build
801 if [ "$w_FLAG" = "y" -a -d "$ROOT" ]; then
802 if [ -d "$ROOT.prev" ]; then
809 [[ -v SRCTOP
]] || fatal_error
"Error: Variable SRCTOP not set."
810 [[ -d "${SRCTOP}" ]] || fatal_error
"Error: ${SRCTOP} is not a directory."
811 [[ -f "${SRCTOP}/usr/src/Makefile" ]] || fatal_error
"Error: ${SRCTOP}/usr/src/Makefile not found."
814 # Generate the cfgparam files
816 # We have to do this before running *any* make commands.
818 make gen-config || fatal_error
"gen-config failed"
821 # Decide whether to clobber
823 if [ "$i_FLAG" = "n" -a -d "$SRC" ]; then
824 echo "\n==== Make clobber at `date` ====\n"
825 echo "\n==== clobber / cleandir ===="
828 # remove old clobber file
829 rm -f $SRC/clobber.out
830 rm -f $SRC/clobber-
${MACH}.out
832 # Remove all .make.state* files, just in case we are restarting
833 # the build after having interrupted a previous 'make clobber'.
834 find . \
( -name SCCS
-o -name .hg
-o -name .svn
-o -name .git \
835 -o -name 'interfaces.*' \
) -prune \
836 -o -name '.make.*' -print |
xargs rm -f
837 if ! $MAKE -ek clobber
; then
841 echo "\n==== Make tools clobber at `date` ====\n"
843 rm -f ${TOOLS}/clobber-
${MACH}.out
845 if ! $MAKE TOOLS_PROTO
=$TOOLS_PROTO -ek clobber
; then
848 rm -rf ${TOOLS_PROTO}
849 mkdir
-p ${TOOLS_PROTO}
852 echo "\n\nClearing $roots"
855 # Get back to a clean workspace as much as possible to catch
856 # problems that only occur on fresh workspaces.
857 # Remove all .make.state* files, libraries, and .o's that may
858 # have been omitted from clobber. A couple of libraries are
859 # under source code control, so leave them alone.
860 # We should probably blow away temporary directories too.
862 find $relsrcdirs \
( -name SCCS
-o -name .hg
-o -name .svn \
863 -o -name .git
-o -name 'interfaces.*' \
) -prune -o \
864 \
( -name '.make.*' -o -name 'lib*.a' -o -name 'lib*.so*' -o \
865 -name '*.o' \
) -print | \
866 grep -v 'tools/ctf/dwarf/.*/libdwarf' |
xargs rm -f
867 make -C $SRCTOP cleandir
869 echo "\n==== No clobber at `date` ====\n"
873 # Build and use the workspace's tools if requested
875 set_non_debug_build_flags
877 build_tools
${TOOLS_PROTO}
878 if (( $?
!= 0 )); then
881 use_tools
$TOOLS_PROTO
887 BINARCHIVE
=${SRCTOP}/bin-
${MACH}.
cpio.Z
889 if [ "$build_ok" = "y" ]; then
890 echo "\n==== Creating protolist system file at `date` ====" \
891 protolist
$ROOT > $ATLOG/proto_list_
${MACH}
892 echo "==== protolist system file created at `date` ====\n" \
894 if [ "$N_FLAG" != "y" ]; then
906 if [ -d "$SRC/pkg" ]; then
907 f2
="$f2 exceptions/packaging"
917 if [ "$N_FLAG" != "y" -a -d $SRC/pkg
]; then
918 echo "\n==== Validating manifests against proto area (protocmp) ====\n" >&2
919 if ! ( cd $SRC/pkg
; /bin
/time $MAKE -e protocmp ROOT
="$ROOT" ) >&2; then
926 # ELF verification: ABI (-A) and runtime (-r) checks
928 if [[ ($build_ok = y
) && (($A_FLAG = y
) ||
($r_FLAG = y
)) ]]; then
929 # Directory ELF-data.$MACH holds the files produced by these tests.
930 elf_ddir
=$TMPDIR/ELF-data.
$MACH
933 # Call find_elf to produce a list of the ELF objects in the proto area.
934 # This list is passed to check_rtime and interface_check, preventing
935 # them from separately calling find_elf to do the same work twice.
936 find_elf
-fr $ROOT > $elf_ddir/object_list
938 if [[ $A_FLAG = y
]]; then
939 echo "\n==== Check versioning and ABI information (interface_check) ====\n" >&2
941 # Produce interface description for the proto. Report errors.
942 /bin
/time interface_check
-o -w $elf_ddir -f object_list \
943 -i interface
-E interface.err
944 if [[ -s $elf_ddir/interface.err
]]; then
945 cat $elf_ddir/interface.err
>&2
951 if [[ $r_FLAG = y
]]; then
952 echo "\n==== Check ELF runtime attributes (check_rtime) ====\n" >&2
954 # If we're doing a DEBUG build the proto area will be left
955 # with debuggable objects, thus don't assert -s.
956 if [[ $D_FLAG = y
]]; then
961 /bin
/time check_rtime
-i -v $rtime_sflag -o -w $elf_ddir \
962 -D object_list
-f object_list
-E runtime.err \
964 if (( $?
!= 0 )); then
969 if [[ -s $elf_ddir/runtime.err
]]; then
970 cat $elf_ddir/runtime.err
>&2
976 # "make check" begins
978 if [ "$i_CMD_LINE_FLAG" = "n" -a "$C_FLAG" = "y" ]; then
979 # remove old check.out
982 rm -f $SRC/check-
${MACH}.out
984 echo "\n==== dmake check ====\n" >&2
985 if ! /bin
/time $MAKE -ek check ROOT
="$ROOT"; then
989 echo "\n==== No '$MAKE check' ====\n"
992 echo "\n==== Find core files ====\n" >&2
994 find $abssrcdirs -name core
-a -type f
-exec file {} \
; >&2
996 # Verify that the usual lists of files, such as exception lists,
997 # contain only valid references to files. If the build has failed,
998 # then don't check the proto area.
999 CHECK_PATHS
=${CHECK_PATHS:-y}
1000 if [ "$CHECK_PATHS" = y
-a "$N_FLAG" != y
]; then
1001 echo "\n==== Check lists of files ====\n" >&2
1003 [ "$build_ok" = y
] && arg
=
1004 checkpaths
$arg $ROOT > $TMPDIR/check-paths.out
2>&1
1005 if [[ -s $TMPDIR/check-paths.out
]]; then
1006 cat $TMPDIR/check-paths.out
>&2
1011 if [ "$M_FLAG" != "y" -a "$build_ok" = y
]; then
1012 echo "\n==== Impact on file permissions ====\n" >&2
1015 for d
in $abssrcdirs; do
1016 if [ -d "$d/pkg" ]; then
1021 if [ -n "$abspkg" ]; then
1022 for d
in "$abspkg"; do
1023 ( cd $d/pkg
; $MAKE -e pmodes
) >&2
1028 if [ "$w_FLAG" = "y" -a "$build_ok" = "y" ]; then
1029 if [[ "$D_FLAG" = y
]]; then
1030 do_wsdiff DEBUG
$ROOT.prev
$ROOT
1032 do_wsdiff non-DEBUG
$ROOT.prev
$ROOT
1037 echo "==== Nightly $maketype build completed: $END_DATE ====" | \
1038 tee -a $build_time_file
1044 elapsed_time
=$SECONDS
1045 ((hours
= elapsed_time
/ 3600 ))
1046 ((minutes
= elapsed_time
/ 60 % 60))
1047 ((seconds
= elapsed_time
% 60))
1049 echo "Total build time ${hours}:${minutes}:${seconds}" |
1050 tee -a $build_time_file
1053 # All done save for the sweeping up.
1054 # (whichever exit we hit here will trigger the "cleanup" trap which
1055 # optionally sends mail on completion).
1057 if [[ "$build_ok" == "y" ]]; then
1058 if [[ "$W_FLAG" == "y" ||
"$build_extras_ok" == "y" ]]; then