add jenkins3
This commit is contained in:
parent
4ba4eda325
commit
75f51c1853
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@ -31,5 +31,8 @@ pipeline {
|
||||
archiveArtifacts 'data.txt'
|
||||
}
|
||||
}
|
||||
stage ('Starting train job') {
|
||||
build job: 's444417-training'
|
||||
}
|
||||
}
|
||||
}
|
17
Jenkinsfile3
Normal file
17
Jenkinsfile3
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user