Message ID | 20240118175942.1052089-4-Sai.Sathujoda@toshiba-tsip.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | Generate CVE-reports only with manual trigger | expand |
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1de6570..2527427 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,6 +29,7 @@ variables: stages: - build - test + - cve-check default: before_script: @@ -341,4 +342,17 @@ build:qemu-riscv64: deploy: disable allow_failure: true +cve-checks: + stage: cve-check + needs: [] + image: registry.gitlab.com/cip-playground/debian-cve-checker:latest + script: + - scripts/run-cve-checks.sh + when: manual + allow_failure: true + artifacts: + expire_in: 1 day + paths: + - cve-reports + include: '.reproducible-check-ci.yml'