fix jenkinsfile training

This commit is contained in:
jakubknczny 2021-05-15 17:39:56 +02:00
parent 6467019d8d
commit f1138b0f4b

View File

@ -12,16 +12,14 @@ pipeline {
}
}
stage('docker') {
agent {
dockerfile true
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
agent { dockerfile true }
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
string(name: 'LEARNING_RATE', defaultValue: '0.0003', description: 'learning rate')
}
string(name: 'LEARNING_RATE', defaultValue: '0.0003', description: 'learning rate')
}
stages {
stage('copyArtifacts') {