summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Security/Coverage-Fuzzing.gitlab-ci.yml
blob: 2dbfb80b419ff69bac9407a427c94b98d24715ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Read more about this feature https://docs.gitlab.com/ee/user/application_security/coverage_fuzzing

# Configure coverage fuzzing with CI/CD variables (https://docs.gitlab.com/ee/ci/variables/README.html).
# List of available variables: https://docs.gitlab.com/ee/user/application_security/coverage_fuzzing/#available-cicd-variables

variables:
  # Which branch we want to run full fledged long running fuzzing jobs.
  # All others will run fuzzing regression
  COVFUZZ_BRANCH: "$CI_DEFAULT_BRANCH"
  # This is using semantic version and will always download latest v2 gitlab-cov-fuzz release
  COVFUZZ_VERSION: v2
  # This is for users who have an offline environment and will have to replicate gitlab-cov-fuzz release binaries
  # to their own servers
  COVFUZZ_URL_PREFIX: "https://gitlab.com/gitlab-org/security-products/analyzers/gitlab-cov-fuzz/-/raw"


coverage_fuzzing_unlicensed:
  stage: .pre
  allow_failure: true
  rules:
    - if: $GITLAB_FEATURES !~ /\bcoverage_fuzzing\b/ && $COVFUZZ_DISABLED == null
  script:
    - echo "ERROR Your GitLab project is missing licensing for Coverage Fuzzing" && exit 1

.fuzz_base:
  stage: fuzz
  allow_failure: true
  before_script:
    - export COVFUZZ_JOB_TOKEN=$CI_JOB_TOKEN
    - export COVFUZZ_PRIVATE_TOKEN=$CI_PRIVATE_TOKEN
    - export COVFUZZ_PROJECT_ID=$CI_PROJECT_ID
    - if [ -x "$(command -v apt-get)" ] ; then apt-get update && apt-get install -y wget; fi
    - wget -O gitlab-cov-fuzz "${COVFUZZ_URL_PREFIX}"/"${COVFUZZ_VERSION}"/binaries/gitlab-cov-fuzz_Linux_x86_64
    - chmod a+x gitlab-cov-fuzz
    - export REGRESSION=true
    - if [[ $CI_COMMIT_BRANCH = $COVFUZZ_BRANCH ]]; then REGRESSION=false; fi;
  artifacts:
    paths:
      - corpus
      - crashes
      - gl-coverage-fuzzing-report.json
    reports:
      coverage_fuzzing: gl-coverage-fuzzing-report.json
    when: always
  rules:
    - if: $COVFUZZ_DISABLED
      when: never
    - if: $CI_COMMIT_BRANCH && $GITLAB_FEATURES =~ /\bcoverage_fuzzing\b/