Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsdks/builds/wrap-configure.sh18
1 files changed, 14 insertions, 4 deletions
diff --git a/sdks/builds/wrap-configure.sh b/sdks/builds/wrap-configure.sh
index 9e077a27389..735fd778dc2 100755
--- a/sdks/builds/wrap-configure.sh
+++ b/sdks/builds/wrap-configure.sh
@@ -43,10 +43,20 @@ if ! "$@" > ".stamp-configure-$D.log" 2>&1; then
if [[ x"$FAILED" == "x1" ]]; then
echo "Configuring $D failed:"
sed "s/^/ /" < ".stamp-configure-$D.log"
- echo
- echo " *** config.log *** "
- echo
- sed "s/^/ /" < config.log
+
+ # Only show config.log if building on CI (jenkins/wrench)
+ SHOW_CONFIG_LOG=0
+ if test -n "$JENKINS_HOME"; then
+ SHOW_CONFIG_LOG=1
+ elif test -n "$BUILD_REVISION"; then
+ SHOW_CONFIG_LOG=1
+ fi
+ if [[ x$SHOW_CONFIG_LOG == x1 ]]; then
+ echo
+ echo " *** config.log *** "
+ echo
+ sed "s/^/ /" < config.log
+ fi
exit 1
fi
fi