Fortify:由于缺少可执行文件而无法运行远程分析

问题描述 投票:0回答:0

我安装了 Fortify Jenkins 插件,我想运行远程翻译和扫描。

stage('Fortify Remote Analysis') {
     steps {
            fortifyRemoteAnalysis remoteAnalysisProjectType: fortifyMSBuild(dotnetProject: 'src/project.csproj'),
            uploadSSC: [appName: 'test-project', appVersion: '2.1']
                }
            }

当我运行这个但是我得到这个错误:

13:46:26  Running Fortify remote analysis step
13:46:26  Fortify Jenkins plugin v 22.1.38
13:46:26  Performing Fortify remote analysis
13:46:26  WARNING: Cannot find scancentral executable
13:46:26  Checking for cloudscan executable

My Jenkins 设置在 ecs 容器上,并且

/var/jenkins_home
映射到 EFS 卷。我还在 efs 中安装了 Fortify 源代码分析器

我的

FORTIFY_HOME
env 变量设置为
FortifySCA
为了方便在配置 Jenkins 部分

我该如何解决这个问题?

jenkins fortify
© www.soinside.com 2019 - 2024. All rights reserved.