Skip to content
Snippets Groups Projects
Commit 619a63f7 authored by rtoy's avatar rtoy
Browse files

Display start and end times for builds. From Eduardo Munoz.

parent df3123d3
No related branches found
No related tags found
No related merge requests found
...@@ -118,6 +118,9 @@ if [ -n "$bootfiles" ]; then ...@@ -118,6 +118,9 @@ if [ -n "$bootfiles" ]; then
done done
fi fi
build_started=`date`
echo "//starting build: $build_started"
TARGET=$BASE-2 TARGET=$BASE-2
ENABLE=$ENABLE2 ENABLE=$ENABLE2
...@@ -142,3 +145,8 @@ then ...@@ -142,3 +145,8 @@ then
OLDLISP="${BASE}-4/lisp/lisp -noinit -core ${BASE}-4/lisp/lisp.core" OLDLISP="${BASE}-4/lisp/lisp -noinit -core ${BASE}-4/lisp/lisp.core"
$TIMER $TOOLDIR/build-utils.sh $TARGET $TIMER $TOOLDIR/build-utils.sh $TARGET
fi fi
build_finished=`date`
echo
echo "//build started: $build_started"
echo "//build finished: $build_finished"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment