Re: Zip and archive folder/sub folders

2022-06-10 Thread Ashwath Mendan
Hi , 

I'm looking for exclude option, looks like exclude is not working, can 
anyone share the working syntax for exclude with zip step?

On Tuesday, March 21, 2017 at 9:33:50 PM UTC+5:30 jer...@bodycad.com wrote:

> zip zipFile: "x64\\Release\\${APPLY_TAG}.zip", dir: 
> "x64\\Release\\${APPLY_TAG}";
> archiveArtifacts artifacts: "x64\\Release\\${APPLY_TAG}.zip", fingerprint: 
> false, allowEmptyArchive: false, onlyIfSuccessful: true;
>
> This work for me, make sure your path are adapted to the platform (Unix vs 
> Windows). Not sure about the wildcard, may want to try without and a simple 
> file to see which part is messing around. I have tryt the archiving of zip 
> command yet. I do the archiving manually after.
>
>
>
> On Tuesday, March 14, 2017 at 2:36:20 AM UTC-4, Baswaraj Malage wrote:
>>
>> Thanks Jerome for all your suggestion. But, no luck to get files in zip. 
>> I did use zip directly (I had to separate commands with ,) but did not work 
>> for me. I might be missing something or jenkins yet to support this feature.
>>
>> zip zipFile: 'screen.zip', archive: true, dir: 'screenprint', glob: 
>> '**/*.png'
>>
>>
>> -Baswaraj
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f84217a0-3fbc-4d82-b00e-9dbfaab0713dn%40googlegroups.com.


Re: Zip and archive folder/sub folders

2017-03-21 Thread jerome
zip zipFile: "x64\\Release\\${APPLY_TAG}.zip", dir: 
"x64\\Release\\${APPLY_TAG}";
archiveArtifacts artifacts: "x64\\Release\\${APPLY_TAG}.zip", fingerprint: 
false, allowEmptyArchive: false, onlyIfSuccessful: true;

This work for me, make sure your path are adapted to the platform (Unix vs 
Windows). Not sure about the wildcard, may want to try without and a simple 
file to see which part is messing around. I have tryt the archiving of zip 
command yet. I do the archiving manually after.


On Tuesday, March 14, 2017 at 2:36:20 AM UTC-4, Baswaraj Malage wrote:
>
> Thanks Jerome for all your suggestion. But, no luck to get files in zip. I 
> did use zip directly (I had to separate commands with ,) but did not work 
> for me. I might be missing something or jenkins yet to support this feature.
>
> zip zipFile: 'screen.zip', archive: true, dir: 'screenprint', glob: 
> '**/*.png'
>
>
> -Baswaraj
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6d552215-fefc-4002-8686-3d315cff8f30%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Zip and archive folder/sub folders

2017-03-14 Thread 'Baswaraj Malage' via Jenkins Users
Thanks Jerome for all your suggestion. But, no luck to get files in zip. I 
did use zip directly (I had to separate commands with ,) but did not work 
for me. I might be missing something or jenkins yet to support this feature.

zip zipFile: 'screen.zip', archive: true, dir: 'screenprint', glob: 
'**/*.png'


-Baswaraj

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2f89c47f-c748-4a80-8390-2fc44de698a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Zip and archive folder/sub folders

2017-03-13 Thread Jérôme Godbout
No need to use 'bat' command, there is a zip command directly. Change:

bat 'zip zipFile: \'screen.zip\' archive: true dir: \'screenprint\' glob:
\'**/*.png\''

for this:

zip zipFile: 'screen.zip' archive: true dir: 'screenprint' glob: '**/*.png'

it should work directly


[image: bodycad] 
Jerome Godbout
Software Developer
2035 rue du Haut-Bord, Québec, QC, Canada. G1N 4R7
T:  +1 418 527-1388
E: jer...@bodycad.com
www.bodycad.com

The contents of this email message and any attachments are intended solely
for the addressee(s) and may contain confidential and/or privileged
information and may be legally protected from disclosure. If you are not
the intended recipient of this message or their agent, or if this message
has been addressed to you in error, please immediately alert the sender by
reply email and then delete this message and any attachments. If you are
not the intended recipient, you are hereby notified that any use,
dissemination, copying, or storage of this message or its attachments is
strictly prohibited.

Le contenu de ce message et les pièces jointes sont destinés uniquement
pour le(s) destinataire(s) et peuvent contenir des informations
confidentielles et / ou privilégiées qui peuvent être protégées légalement
contre toute divulgation. Si vous n'êtes pas le destinataire de ce message
ou son agent, ou si ce message vous a été adressé par erreur, s’il vous
plaît avertir immédiatement l'expéditeur par courriel de réponse, puis
supprimer ce message et les pièces jointes. Si vous n'êtes pas le
destinataire prévu, vous êtes par la présente informé que toute
utilisation, diffusion, copie, ou stockage de ce message ou de ses pièces
jointes est strictement interdit.

On Mon, Mar 13, 2017 at 1:56 AM, 'Baswaraj Malage' via Jenkins Users <
jenkinsci-users@googlegroups.com> wrote:

> Hey Jerome
> I'm using latest stable version of Jenkins and my pipeline node script
> looks as below.
>
>
> node {
>> stage('checkout') {
>> git '...github link...'
>> }
>> stage('build and test') {
>> bat 'npm install'
>> bat 'npm run test'
>> }
>> stage('archive') {
>> bat 'zip zipFile: \'screen.zip\' archive: true dir: \'screenprint\' glob:
>> \'**/*.png\''
>> }
>> }
>>
>
>
> Thanks
> Baswaraj
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/jenkinsci-users/Hbv3-F842pE/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-users/38e92b8f-1e32-4e68-aee6-16705a20f0df%40googlegroups.
> com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAKmu%2Be2L%3DPY-DYD_xM-jcFUVba43JDpfNeo1_%2BPPcnM%2BQCto0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Zip and archive folder/sub folders

2017-03-12 Thread 'Baswaraj Malage' via Jenkins Users
Hey Jerome
I'm using latest stable version of Jenkins and my pipeline node script 
looks as below.


node {
> stage('checkout') {
> git '...github link...'
> }
> stage('build and test') {
> bat 'npm install'
> bat 'npm run test'
> }
> stage('archive') {
> bat 'zip zipFile: \'screen.zip\' archive: true dir: \'screenprint\' glob: 
> \'**/*.png\''
> }  
> }
>


Thanks
Baswaraj 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/38e92b8f-1e32-4e68-aee6-16705a20f0df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Zip and archive folder/sub folders

2017-03-08 Thread 'Baswaraj Malage' via Jenkins Users
Hi Team
I would like to know how to zip and archive folders/subfolders/*.png files 
in pipeline script.

In my job workspace, I have a folder by name ScreenPrint which has 3 sub 
folders as chrome, firefox and phantom. Each sub folder would have .png 
files. So, I would like to zip and archive entire ScreenPrint folder with 
all subfolder/files to keep them separate for review. I did use below 
command which archived files but not separated by folders.

archiveArtifacts allowEmptyArchive: true, artifacts: 'screenprint/**', 
onlyIfSuccessful: true


When I looked @ 
https://jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#code-zip-code-create-zip-file
 
to zip folders/files but could not get exact pipeline syntax to zip.

zip zipFile: 'screen.zip', glob: '', dir:'', archive: true 


Looking for some guidance to zip the folders using pipeline syntax.

Thanks
Baswaraj

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/0dad7739-f539-4f16-96b1-999f8aaa6d38%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.