-
Notifications
You must be signed in to change notification settings - Fork 43
/
.travis.yml
31 lines (27 loc) · 1.14 KB
/
.travis.yml
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
# Integrate Fortify on Demand Static AppSec Testing (SAST) into your Travis CI pipeline
# The following environment variables must be defined in Repository settings before using this job
# - $FOD_RELEASE_ID
# - $FOD_USER
# - $FOD_PAT
# - $FOD_TENANT
version: ~> 1.0
language: java
dist: focal
os: linux
jdk:
- openjdk11
cache:
directories:
- $HOME/.m2/repository
after_success:
###################################################################
# INTEGRATE FORTIFY SAST #
# #
# For FORTIFY ON DEMAND uncomment the next line #
#- bash devops-integrations/.travisci/fortify-sast-fod.sh
# #
# For FORTIFY SCANCENTRAL uncomment the next line #
- bash devops-integrations/.travisci/fortify_sast_scancentral.sh
# #
# #
###################################################################