Skip to content

Commit

Permalink
feat: gitlabCI template using docker (Checkmarx#4121)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriopeixotocx authored Aug 27, 2021
1 parent cbc8cb4 commit 6052cb1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions examples/gitlab/KICS.v3.gitlabci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Include this file in your .gitlab-ci.yml file to automate & integrate Checkmarx KICS' security scans.
#
# include documentation https://docs.gitlab.com/ee/ci/yaml/includes.html
#
# defined as in https://docs.gitlab.com/ee/development/cicd/templates.html#versioning
#
image:
name: checkmarx/kics:latest-alpine
entrypoint: [""]

stages:
- kics

kics-scan:
stage: kics
script:
- kics scan -q /app/bin/assets/queries -p ${PWD} --ignore-on-exit all --report-formats glsast -o ${PWD} --output-name kics-results
artifacts:
reports:
sast: gl-sast-kics-results.json
when: always

0 comments on commit 6052cb1

Please sign in to comment.