0

I am looking at the jenkins file configuration which says

post {
      always {
          archiveArtifacts artifacts: '*.*', fingerprint: false

      }
  }

what does the finger print mean here , How it is different from fingerpring:true parameter

Cizzl
  • 324
  • 2
  • 11
hari haran
  • 51
  • 1
  • 1
  • 5

1 Answers1

2

Basically a fingerprint is just a hash (MD5) of your artifacts that let you track down the build that created the artifact.

Source

Michael Kemmerzell
  • 4,802
  • 4
  • 27
  • 43