Add invoking train from create-stats job
Some checks failed
s434704-training/pipeline/head There was a failure building this commit

This commit is contained in:
Wojciech Jarmosz 2021-05-13 23:40:39 +02:00
parent 2f09ede319
commit 8f8ff28633
2 changed files with 10 additions and 3 deletions

View File

@ -18,5 +18,12 @@ pipeline {
}
}
}
stage ('Invoke training') {
steps {
build job: 's434704-training', parameters: [
string(name: 'options', value: "")
]
}
}
}
}

View File

@ -1,9 +1,9 @@
pipeline {
agent {
docker { image 'jarmosz/ium:1.1' }
}
dockerfile true
}
parameters {
string(name: 'optioms', description: 'Trainig script options')
string(name: 'options', description: 'Trainig script options')
buildSelector(defaultSelector: lastSuccessful(), description: 'Use latest build', name: 'BUILD_SELECTOR')
}
stages {