Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docs): added Bamboo integration #4791

Merged
merged 4 commits into from
Feb 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ We provide plugins for some CI/CD tools. For some others we provide a tutorial o
Integrate KICS with:

- [Azure Pipelines](integrations_azurepipelines.md)
- [Bamboo](integrations_bamboo.md)
- [Bitbucket Pipelines](integrations_bitbucketpipelines.md)
- [CircleCI](integrations_circleci.md)
- [Github Actions](integrations_ghactions.md)
Expand Down
23 changes: 23 additions & 0 deletions docs/integrations_bamboo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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](https://user-images.githubusercontent.com/74001161/152352791-9aa161b9-5d57-456b-a0a8-990930bf7960.gif)


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](https://user-images.githubusercontent.com/74001161/152361840-94768245-0bbe-43cd-adaa-9afb9289e381.gif)


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


![commits](https://user-images.githubusercontent.com/74001161/152364388-fa37aede-a299-47bf-a3d1-45985614481c.gif)
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ nav:
- Integrations:
- Overview: integrations.md
- Azure DevOps: integrations_azurepipelines.md
- Bamboo: integrations_bamboo.md
- Bitbucket Pipelines: integrations_bitbucketpipelines.md
- CircleCI: integrations_circleci.md
- Github Actions: integrations_ghactions.md
Expand Down