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') { stage('docker') {
agent { agent { dockerfile true }
dockerfile true parameters {
parameters { buildSelector(
buildSelector( defaultSelector: lastSuccessful(),
defaultSelector: lastSuccessful(), description: 'Which build to use for copying artifacts',
description: 'Which build to use for copying artifacts', name: 'BUILD_SELECTOR')
name: 'BUILD_SELECTOR')
string(name: 'LEARNING_RATE', defaultValue: '0.0003', description: 'learning rate') string(name: 'LEARNING_RATE', defaultValue: '0.0003', description: 'learning rate')
}
} }
stages { stages {
stage('copyArtifacts') { stage('copyArtifacts') {