ium_444417/Jenkinsfile3

12 lines
272 B
Plaintext
Raw Normal View History

2022-04-25 19:16:01 +02:00
pipeline {
2022-04-25 20:21:55 +02:00
agent {
docker { image 'mikolajk/ium:latest' }
}
2022-04-25 19:16:01 +02:00
stages {
2022-04-25 20:21:55 +02:00
stage('Test') {
steps {
2022-04-25 21:24:19 +02:00
copyArtifacts filter: 'Participants_Data_HPP/**/*.*', projectName: 's444417-create-dataset'
2022-04-25 19:16:01 +02:00
}
}
}
}