ium_444417/Jenkinsfile3
s444417 235996b9c1
Some checks reported errors
s444417-training/pipeline/head Something is wrong with the build of this commit
fix bug
2022-04-25 20:00:03 +02:00

18 lines
504 B
Plaintext

pipeline {
agent any
stages {
stage("start docker") {
agent {
docker.image('mikolajk/ium:latest').inside {
sh './startscript1.sh'
archiveArtifacts './Participants_Data_HPP/Train.csv ./Participants_Data_HPP/Test.csv ./Participants_Data_HPP/Dev.csv'
}
}
}
stage("Check out from version control") {
steps {
checkout scm
}
}
}
}