pipeline { agent { dockerfile true } stages { stage("Setup parameters") { steps { script { properties([ parameters([ string( defaultValue: '10', name: 'EPOCHS', trim: true ) ]) ]) } } } stage("Git clone") { steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444465', url: 'https://git.wmi.amu.edu.pl/s444465/ium_444465']]]) } } stage("Training") { steps { sh "chmod 777 ml_training.py" sh "python3 ml_training.py" } } } }