Daan Bakker
07/12/2024, 12:40 PM# zip everything, except what is defined in the 'cloud.zipignore'
- script: zip -r sources.zip . -x@cloud.zipignore
displayName: Zip Source Code
I use
# zip everything, except what is defined in the 'cloud.zipignore'
- script: 7zFM.exe -r $(System.DefaultWorkingDirectory)\sources.zip . -x@cloud.zipignore
displayName: Zip Source Code
This zip process takes at least 20 minutes. Anybody an idea on why this takes this long and how to improve this?Daan Bakker
07/12/2024, 12:50 PM- script: 7z.exe a -r -tzip $(System.DefaultWorkingDirectory)\sources.zip . -x@cloud.zipignore
Sebastiaan
07/12/2024, 1:00 PM-mx0
will make sure it doesn't use compression, should make it faster too.Daan Bakker
07/12/2024, 1:40 PM