我试图找到一个在Jenkins管道(工作流程)中使用Jenkins Copy Artifacts插件的示例。
有人能指出使用它的示例Groovy代码吗?
答案 0 :(得分:27)
使用声明性Jenkinsfile,您可以使用以下管道:
pipeline {
agent any
stages {
stage ('push artifact') {
steps {
sh 'mkdir archive'
sh 'echo test > archive/test.txt'
zip zipFile: 'test.zip', archive: false, dir: 'archive'
archiveArtifacts artifacts: 'test.zip', fingerprint: true
}
}
stage('pull artifact') {
steps {
copyArtifacts filter: 'test.zip', fingerprintArtifacts: true, projectName: '${JOB_NAME}', selector: specific('${BUILD_NUMBER}')
unzip zipFile: 'test.zip', dir: './archive_new'
sh 'cat archive_new/test.txt'
}
}
}
}
在CopyArtifact的版本1.39之前,您必须用以下内容替换第二阶段(感谢@Yeroc):
stage('pull artifact') {
steps {
step([ $class: 'CopyArtifact',
filter: 'test.zip',
fingerprintArtifacts: true,
projectName: '${JOB_NAME}',
selector: [$class: 'SpecificBuildSelector', buildNumber: '${BUILD_NUMBER}']
])
unzip zipFile: 'test.zip', dir: './archive_new'
sh 'cat archive_new/test.txt'
}
}
使用CopyArtifact
,我使用' $ {JOB_NAME}'作为项目名称,它是当前正在运行的项目。
CopyArtifact
使用的默认选择器使用上一个成功的项目内部版本号,从不使用当前版本号(因为它尚未成功或不成功)。使用SpecificBuildSelector
,您可以选择' $ {BUILD_NUMBER}'其中包含当前正在运行的项目内部版本号。
此管道适用于并行阶段,可以管理大量文件(我使用的是300Mb文件,不适用于存储/解除存储)
如果你有所有需要的插件,这个管道可以与我的Jenkins 2.74完美配合
答案 1 :(得分:25)
如果构建版没有在同一个管道中运行,您可以使用直接CopyArtifact
插件,例如:https://www.cloudbees.com/blog/copying-artifacts-between-builds-jenkins-workflow和示例代码:
node {
// setup env..
// copy the deployment unit from another Job...
step ([$class: 'CopyArtifact',
projectName: 'webapp_build',
filter: 'target/orders.war']);
// deploy 'target/orders.war' to an app host
}
答案 2 :(得分:20)
如果您在主服务器中使用从服务器并且想要在彼此之间复制工件,则可以使用stash / unstash,例如:
stage 'build'
node{
git 'https://github.com/cloudbees/todo-api.git'
stash includes: 'pom.xml', name: 'pom'
}
stage name: 'test', concurrency: 3
node {
unstash 'pom'
sh 'cat pom.xml'
}
您可以在此链接中看到此示例:
https://dzone.com/refcardz/continuous-delivery-with-jenkins-workflow
答案 3 :(得分:1)
name = "/" + "${env.JOB_NAME}"
def archiveName = 'relNum'
try {
step($class: 'hudson.plugins.copyartifact.CopyArtifact', projectName: name, filter: archiveName)
} catch (none) {
echo 'No artifact to copy from ' + name + ' with name relNum'
writeFile file: archiveName, text: '3'
}
def content = readFile(archiveName).trim()
echo 'value archived: ' + content
尝试使用复制工件插件