Fix yamllint for netconf
[releng/builder.git] / jjb / include-raw-deploy-archives.sh
index 9f3ad48bc1ce8dc086a2d10dc3e88b89880f039f..53d2991a54f02308ff1581b09ba1af72cde8722c 100644 (file)
@@ -1,8 +1,21 @@
 #!/bin/bash
 
 set +e  # Do not affect the build result if some part of archiving fails.
+
+# Print out git status at the end of the build before we archive if $WORKSPACE
+# is a git repo.
+if [ -d $WORKSPACE/.git ]; then
+    echo ""
+    echo "----------> Git Status Report"
+    git status
+fi
+
+echo ""
+echo "----------> Archiving build to logs server"
 # Configure wget to not print download status when we download logs or when
-# Jenkins is installing Maven.
+# Jenkins is installing Maven (To be clear this is the Jenkins Maven plugin
+# using a shell script itself that we are unable to modify directly to affect
+# wget).
 echo "verbose=off" > ~/.wgetrc
 
 ARCHIVES_DIR="$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER"