From 33f545642d7ed3df424e1743245b7bb434036085 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 15 Nov 2017 02:45:57 +0000 Subject: [PATCH 1/3] nightly/bin/nightly: Clone the source code tree quietly git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7269 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- nightly/bin/nightly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nightly/bin/nightly b/nightly/bin/nightly index 927f61e1a..9173eeac5 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -155,7 +155,7 @@ for logfile in old new ; do svn co -q -r {${date}} ${scst_repo} ${ABT_TMPDIR}/scst; \ else \ ( rmdir ${ABT_TMPDIR}/scst && \ - git clone ${scst_repo} ${ABT_TMPDIR}/scst && \ + git clone -q ${scst_repo} ${ABT_TMPDIR}/scst && \ cd ${ABT_TMPDIR}/scst && git reset --hard ${rev} ); \ fi" && runcmd ${logfile} \ From 979d70c0a321356d4f493f571e529e6d8412e4dc Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 15 Nov 2017 02:47:06 +0000 Subject: [PATCH 2/3] nightly build: Update kernel versions git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7270 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- nightly/conf/nightly.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nightly/conf/nightly.conf b/nightly/conf/nightly.conf index 12fdb2bff..e75af2842 100644 --- a/nightly/conf/nightly.conf +++ b/nightly/conf/nightly.conf @@ -13,15 +13,15 @@ ABT_KERNELS=" \ 4.7.10-nc \ 4.6.7-nc \ 4.5.7-nc \ -4.4.34-nc \ +4.4.65-nc \ 4.3.6-nc \ 4.2.8-nc \ -4.1.35-nc \ +4.1.38-nc \ 4.0.9-nc \ 3.19.8-nc \ -3.18.44-nc \ +3.18.51-nc \ 3.17.8-nc \ -3.16.39-nc \ +3.16.41-nc \ 3.15.10-nc \ 3.14.79-nc \ 3.13.11-nc \ From 891ec1b3905f8c639b3696b7707178328b9b9c95 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 15 Nov 2017 02:48:03 +0000 Subject: [PATCH 3/3] nightly/conf/nightly.sendmail: Use mail if mutt is not available git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7271 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- nightly/conf/nightly.sendmail | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/nightly/conf/nightly.sendmail b/nightly/conf/nightly.sendmail index d28790ff3..7960ceb77 100755 --- a/nightly/conf/nightly.sendmail +++ b/nightly/conf/nightly.sendmail @@ -19,10 +19,14 @@ do esac done -if [ $# -ge 3 ]; then - gzip -9 <"$3" >"$3.gz" - mutt -s "$1" -a "$3.gz" ${recipients} < "$2" - rm -f "$3.gz" +if type mutt >/dev/null 2>&1; then + if [ $# -ge 3 ]; then + gzip -9 <"$3" >"$3.gz" + mutt -s "$1" -a "$3.gz" ${recipients} < "$2" + rm -f "$3.gz" + else + mutt -s "$1" ${recipients} < "$2" + fi else - mutt -s "$1" ${recipients} < "$2" + mail -s "$1" ${recipients} < "$2" fi