235996b9c1
Some checks reported errors
s444417-training/pipeline/head Something is wrong with the build of this commit
18 lines
504 B
Plaintext
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
|
|
}
|
|
}
|
|
}
|
|
} |