Best tools to integration with jenkins pipeline for apigee

Not applicable

Hello,

I am trying to decide on best tool set for apigee pipleine flow for CI/CD. Can someone suggest me good tools. Right now am following this flow. Please suggest if there is anything better.

apigeelint(static code analysis) --> newman (unti testing) --> sonarqube(code coverage) -- build -- apickli

1 2 1,278
2 REPLIES 2

babuk0930
Participant III

How did you integrate sonarqube?

Hi @lakshmi,

Here are the improved version step by step -

apigeelint -- (Linting the code basically, you can use jslint also for custom JS you have written for your )

Mocha chai - for running unit test for custom JS code

Sonarqube - (Static code analysis and code coverage (https://community.apigee.com/articles/49758/apigee-sonarqube-plugin.html)

maven build/apigeetool - (deploy the proxies and its dependencies)

newman - Integration testing on the actual deployed version

apickli - Not mandatory but good it have in the cycle.