1
1

Minor updates to the nightly scripts

This commit was SVN r27419.
Этот коммит содержится в:
Jeff Squyres 2012-10-05 11:42:54 +00:00
родитель 95db4b7536
Коммит bad08cdf7e
2 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -23,8 +23,8 @@ script_dir=/u/mpiteam/scripts
# The tarballs to make
if [ $# -eq 0 ] ; then
# We're no longer ever checking the 1.0 - 1.3 branches anymore
dirs="/branches/v1.4 /trunk /branches/v1.5"
# We're no longer ever checking the 1.0 - 1.4 branches anymore
dirs="/trunk /branches/v1.7 /branches/v1.6"
else
dirs=$@
fi

Просмотреть файл

@ -5,7 +5,7 @@
# The tarballs to make
if [ $# -eq 0 ] ; then
dirs="branches/v1.5"
dirs="branches/v1.6"
else
dirs=$@
fi
@ -41,6 +41,16 @@ for dir in $dirs; do
module load "autotools/ompi-$ver"
./$script $@ >dist.out 2>&1
if test "$?" != "0"; then
cat <<EOF
=============================================================================
== Dist failure
== Last few lines of output (full results in dist.out file):
=============================================================================
EOF
tail -n 20 dist.out
exit 1
fi
module unload "autotools"
done