Pass multiple pattern args in logs-deploy.sh
[releng/global-jjb.git] / shell / jjb-verify-job.sh
index 789ffde..a1e76c9 100644 (file)
@@ -13,7 +13,7 @@ echo "---> jjb-verify-job.sh"
 # Ensure we fail the job if any steps fail.
 set -eu -o pipefail
 
-jenkins-jobs -l DEBUG test --recursive -o archives/job-configs --exclude jjb-test jjb
+jenkins-jobs -l DEBUG test --recursive -o archives/job-configs jjb/
 
 # Sort job output into sub-directories. On large Jenkins systems that have
 # many jobs archiving so many files into the same directory makes NGINX return
@@ -28,3 +28,8 @@ do
     fi
 done
 popd
+
+if [ ! -z "$(ls -A archives/job-configs)" ]; then
+    tar cJvf archives/job-configs.tar.xz archives/job-configs
+    rm -rf archives/job-configs
+fi