ium_444417/Jenkinsfile3
s444417 55bcae78b8
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
fix jenkinfile3
2022-04-25 21:28:22 +02:00

12 lines
270 B
Plaintext

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