add jenkins3

This commit is contained in:
s444417 2022-04-25 19:16:01 +02:00
parent 4ba4eda325
commit 75f51c1853
2 changed files with 20 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -31,5 +31,8 @@ pipeline {
archiveArtifacts 'data.txt'
}
}
stage ('Starting train job') {
build job: 's444417-training'
}
}
}

17
Jenkinsfile3 Normal file
View File

@ -0,0 +1,17 @@
pipeline {
agent none
stages {
stage("start docker") {
agent {
docker.image.inside('mikolajk/ium:latest') {
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
}
}
}
}