我想在脚本化的Jenkins管道中调用Jenkins ClamAV plugin。
我目前的做法是:
ALTER SYSTEM SET maintenance_work_mem = '1GB';
ALTER SYSTEM
SELCT pg_reload_conf();
pg_reload_conf
----------------
t
(1 row)
但是,当管道执行到达上述点时,我会收到此异常:
...
step (
[$class: 'org.jenkinsci.plugins.clamav.ClamAvRecorder', includes: "FileToScan.zip", excludes: "" ]
)
...
ClamAvRecorder扩展了hudson.tasks.Recorder,它实现了BuildStep,因此我并不真正理解上述异常。
对于使ClamAV插件在管道中工作的任何帮助,我们深表感谢。