pipeline{ agent any options { disableConcurrentBuilds() } triggers { pollSCM 'H/3 * * * * ' } stages{ stage("打包"){ steps{ sh "docker build . -t coal:${env.BRANCH_NAME}" } } } }