5bfb94ac0a
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
13 lines
381 B
Plaintext
13 lines
381 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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |