scripts/nightly: split packages stage logs

This commit is contained in:
Franco Fichtner 2018-05-29 08:27:24 +02:00
parent 3daa773fef
commit 144d060b82
1 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,10 @@ for FLAVOUR in OpenSSL LibreSSL; do
if [ -z "${1}" ]; then
(make clean-packages FLAVOUR=${FLAVOUR} 2>&1) > /dev/null
fi
(time make packages FLAVOUR=${FLAVOUR} 2>&1) \
> ${LOGSDIR}/${PRODUCT_VERSION}/packages-${FLAVOUR}.log
(time make test FLAVOUR=${FLAVOUR} 2>&1) \
> ${LOGSDIR}/${PRODUCT_VERSION}/test-${FLAVOUR}.log
for STAGE in ports plugins core test; do
(time make ${STAGE} FLAVOUR=${FLAVOUR} 2>&1) \
> ${LOGSDIR}/${PRODUCT_VERSION}/${STAGE}-${FLAVOUR}.log
done
done
tar -C ${LOGSDIR} -czf ${LOGSDIR}/${PRODUCT_VERSION}.tgz ${PRODUCT_VERSION}