Is there any way by which we can track build artifacts fingerprints in AWS CodeBuild / CodePipeline, something similar to that we have in Jenkins.
Asked
Active
Viewed 35 times
1 Answers
0
CodePipeline can list the artifacts used by a given pipeline execution:
https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListActionExecutions.html

Aaron
- 1,575
- 10
- 18
-
But, this does not track the changes to artifacts over multiple builds. – Srujal Kachhela Apr 18 '19 at 14:24
-
Each pipeline execution has a different set of artifacts, so they're effectively immutable. – Aaron Apr 18 '19 at 16:26