ium_444417/Jenkinsfile3
s444417 e12ef61c2b
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
move run comand to dockerfile
2022-04-25 20:35:53 +02:00

12 lines
298 B
Plaintext

pipeline {
agent {
docker { image 'mikolajk/ium:latest' }
}
stages {
stage('Test') {
steps {
archiveArtifacts './Participants_Data_HPP/Train.csv ./Participants_Data_HPP/Test.csv ./Participants_Data_HPP/Dev.csv'
}
}
}
}