Skip to content

Running KICS in Bamboo

You can easily integrate KICS into Bamboo. The example below demonstrates how you can run KICS in a build plan linked to a GitHub repository.

After you create a project with a build plan linked to a Github repository, you need to create a task to run KICS. The script body should contain docker run -v ${PWD}:/path checkmarx/kics:latest scan -p /path -o /path/results --ci --ignore-on-exit results.

creatingTask

For example, to turn on this task every time a commit is merged in the Github repository, you need to create a plan branch that enables that.

createPlanBranch

The build will run every time a commit is merged in the Github repository.

commits