ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz 7376d50da8
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good
deleted second agent
2022-05-16 00:35:34 +02:00

16 lines
271 B
Plaintext

pipeline {
agent {
dockerfile {
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Prediction') {
steps {
sh 'ls -la'
sh "python ./predictMlflow.py"
}
}
}
}