Skip to content

GitLab CI Kotlin DSLopensavvy.gitlab.ciArtifactscoverageFuzzing

coverageFuzzing

fun coverageFuzzing(path: String)

Collects coverage fuzzing security test reports.

The collected coverage fuzzing report uploads to GitLab as an artifact. GitLab can display the results of one or more reports in:

  • The merge request coverage fuzzing widget

  • The pipeline Security tab

  • The Project Vulnerability report

  • The security dashboard

Example

val coverageFuzzing by job {
    script {
        shell("run-coverage-fuzzing-tests")
    }

    artifacts {
        coverageFuzzing("gl-coverage-fuzzing-report.json")
    }
}

External resources