我有一个从SVN检索工作区的Jenkins作业。如何设置Jenkins从工作区文件夹中创建ZIP?
答案 0 :(得分:1)
您尚未指定平台。在Windows上我使用NAnt脚本来执行此操作。
<zip zipfile="<Path where file will be created>\<your file>.zip">
<fileset basedir="<Path to the folder to be zipped>">
<include name="**/*" />
</fileset>
</zip>
http://nant.sourceforge.net/release/0.85/help/tasks/zip.html
http://nant.sourceforge.net/release/0.85-rc1/help/tasks/unzip.html
在Linux / UNIX上,Ant提供相同的东西,但有更多选项。