This commit is contained in:
laskau 2019-04-26 11:07:45 +02:00
parent 5e6cdc4dff
commit a848c48cf9

15
Jenkinsfile vendored
View File

@ -1,14 +1,13 @@
pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
target: 'Infra'
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
target: 'Infra']);
}
}
}
}
}
}