ium_444417/Jenkinsfile3
s444417 78e42d0b3b
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
fix artifacts
2022-04-25 21:21:40 +02:00

12 lines
271 B
Plaintext

pipeline {
agent {
docker { image 'mikolajk/ium:latest' }
}
stages {
stage('Test') {
steps {
copyArtifacts filter: 'Participants_Data_HPP/**/*.*' projectName: 's444417-create-dataset'
}
}
}
}