My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more
Son Luong Ngoc

2 likes

·

2.3K reads

2 comments

Vincent De Smet
Vincent De Smet
Sep 2, 2022

Love the article! One question, the Funnel parts defined in the introduction mention Continuous Deployment, Artifact build and Testing

When looking at optimizing these parts, you mention Continuous Integration being the part within the funnel that is generally easily to measure and optimize.

Does CI span across Testing and Artifact build or does it refer solely to the testing part?

·
·1 reply
Son Luong Ngoc
Son Luong Ngoc
Author
·Sep 7, 2022

Thanks for reading!

Depends on the business, CI could means different things. There are businesses, like one of my former employers, who do very little to no testing. So CI in those cases would be simply building artifacts and making sure your code compile. For others, it could range between compile and various kind of automated tests: pre-merge, post-merge, e2e, etc...

Artifacts is specify here as not every deployments is container image based. For example: building a custom RPM to release via systemd over baremetal, or a new rom to flash onto custom chips. Artifacts stage for me encompass the build and stamp of code, resulting in various kind of artifacts to be stored in an artifact store. There, additional validation could be done before deployment is triggered automatically on-demand, on-schedule or semi-manual triggered.

Again, these could be present in some businesses and not others. The general idea is that you should invest more effort in understanding how your funnel looks like, what is the conversion rate between stages and where / how to invest to unblock engineers.

1
·