Browse Source

Switch to use 7zip (for ZIP compression) to speed up the archive generation and to squeeze it a bit more.

[SVN r45907]
Rene Rivera 18 years ago
parent
commit
0a8ccdec9f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tools/regression/xsl_reports/build_results.sh

+ 2 - 1
tools/regression/xsl_reports/build_results.sh

@@ -132,7 +132,8 @@ upload_results()
     
     cd ${1}/all
     rm -f ../../${1}.zip*
-    zip -q -r -9 ../../${1} * -x '*.xml'
+    #~ zip -q -r -9 ../../${1} * -x '*.xml'
+    7za a -tzip -mx=9 ../../${1}.zip * '-x!*.xml'
     cd "${cwd}"
     mv ${1}.zip ${1}.zip.uploading
     rsync -vuzhh --rsh=ssh --stats \

粤ICP备19079148号