mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merge pull request #1202 from Alfresco/feature/APPS-407_SourceClearScan_no
Feature/apps 407 source clear scan no
This commit is contained in:
@@ -145,8 +145,7 @@ jobs:
|
|||||||
|
|
||||||
- name: "Source Clear Scan (SCA)"
|
- name: "Source Clear Scan (SCA)"
|
||||||
stage: Security Scans
|
stage: Security Scans
|
||||||
script:
|
script: travis_wait 30 bash scripts/source_clear.sh
|
||||||
- echo "Source Clear Scan (SCA)"
|
|
||||||
- name: "Static Analysis (SAST)"
|
- name: "Static Analysis (SAST)"
|
||||||
stage: Security Scans
|
stage: Security Scans
|
||||||
script:
|
script:
|
||||||
|
16
scripts/source_clear.sh
Normal file
16
scripts/source_clear.sh
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# fail script immediately on any errors in external commands and print the lines
|
||||||
|
set -ev
|
||||||
|
|
||||||
|
mvn -B -q clean install \
|
||||||
|
-DskipTests \
|
||||||
|
-Dmaven.javadoc.skip=true \
|
||||||
|
-pl '!rm-automation,!rm-automation/rm-automation-community-rest-api,!rm-automation/rm-automation-enterprise-rest-api,!rm-automation/rm-automation-ui,!rm-benchmark' \
|
||||||
|
com.srcclr:srcclr-maven-plugin:scan \
|
||||||
|
-Dcom.srcclr.apiToken=$SRCCLR_API_TOKEN > scan.log
|
||||||
|
|
||||||
|
SUCCESS=$? # this will read exit code of the previous command
|
||||||
|
|
||||||
|
cat scan.log | grep -e 'Full Report Details' -e 'Failed'
|
||||||
|
|
||||||
|
exit ${SUCCESS}
|
Reference in New Issue
Block a user