InterviewSolution
Saved Bookmarks
| 1. |
What is Artifact Archival & how to do it in Pipelines? |
|
Answer» Artifacts are the exportable/storable/archivable results of a specific job build. This can be configured USING a PLUGIN called - Copy artifact Plugin. BASED on the configured pattern, the files/directories matching the configured patterns will be archived for a Jenkins build, which can be used for future references. In the PIPELINE, it can be configured as follows - archiveArtifacts artifacts: 'output/**/*' |
|