0
私はJenkins2パイプライン(groovy)スクリプトを用意していますが、p4 SCMを使用して(オプションで)シェルフからunshelveできるようにしたいと思います。Jenkins 2パイプラインgroovyスクリプトからP4 unshelveする方法
checkout(
[$class: 'PerforceScm',
credential: 'my-p4-credentials',
populate:
[$class: 'ForceCleanImpl',
have: false,
parallel: [enable: false,
minbytes: '1024',
minfiles: '1',
path: '/usr/local/bin/p4',
threads: '4'],
pin: p4shelf, // <--! this variable is the shelf CL
quiet: true],
workspace: [$class: 'TemplateWorkspaceImpl',
charset: 'auto',
format: 'jenkins-${NODE_NAME}-${JOB_NAME}',
pinHost: false,
templateName: p4branch]])