Overview
When uploading several hundred files as Artifacts you may find that you are seeing long durations for the store_artifacts
step(s)
Solutions
- Compressing all of the files.
- Uploading as a single compressed file.
An example code snippet that can be used can be found below:
- run:
name: Compress Artifacts
command: tar -cvzf myartifact.tar path/to/artifacts
- store_artifacts:
path: myartifact.tar
destination: artifact_name
Once this has been done you should see an improvement in the speed of the upload.
Comments
Article is closed for comments.