2022-04-25 19:16:01 +02:00
|
|
|
pipeline {
|
2022-04-25 20:00:03 +02:00
|
|
|
agent any
|
2022-04-25 19:16:01 +02:00
|
|
|
stages {
|
|
|
|
stage("start docker") {
|
|
|
|
agent {
|
2022-04-25 19:53:02 +02:00
|
|
|
docker.image('mikolajk/ium:latest').inside {
|
2022-04-25 19:42:13 +02:00
|
|
|
sh './startscript1.sh'
|
2022-04-25 19:16:01 +02:00
|
|
|
archiveArtifacts './Participants_Data_HPP/Train.csv ./Participants_Data_HPP/Test.csv ./Participants_Data_HPP/Dev.csv'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|