-
Task
-
Resolution: Fixed
-
Minor
Hi,
How can I use p4 groovy in declarative pipeline?
p4karl, you told me that I can use below syntax, but I can't use this.
pipeline { agent { kubernetes { label 'test' yamlFile 'test.yaml' } } options { skipDefaultCheckout() } stages { stage('Run Test') { steps { container(name: 'test', shell: '/bin/bash') { p4 credential: 'p4_10.251.245.74_1667_perforce', workspace: templateSpec(charset: 'utf8', format: 'jenkins-${JOB_NAME}-${BUILD_ID}-${NODE_NAME}', pinHost: false, templateName: 'TEMPLATE') // and how to use p4.run('client', '-o') for example } } } } }