Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Enable fossa scan #2412

Merged
merged 1 commit into from
Aug 22, 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
16 changes: 16 additions & 0 deletions .fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 3

targets:
only:
- type: gomod
- type: maven
path: java/jmx
- type: maven
path: java/runner
- type: setuptools
path: python

paths:
exclude:
- test-services
- tests
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ default:

stages:
- update-stage-cache
- sast-oss-scan
- win-bundle-build
- win-bundle-sign
- win-msi-build
Expand All @@ -15,6 +16,9 @@ stages:
include:
- project: 'core-ee/signing/api-integration'
file: '/templates/.sign-client.yml'
- project: 'ci-cd/templates'
ref: master
file: '/prodsec/.oss-scan.yml'

.sign-release-cache:
variables:
Expand All @@ -41,6 +45,15 @@ update-stage-cache:
script:
- make stage-cache

fossa:
extends: .oss-scan
stage: sast-oss-scan
needs: []
only:
- main
- schedules
# allow_failure: false

win-bundle-build:
stage: win-bundle-build
needs: []
Expand Down