Zaktualizuj 'Jenkinsfile_training'
All checks were successful
s430705-evaluation/pipeline/head This commit looks good
s430705-training/pipeline/head This commit looks good

This commit is contained in:
Michał Zaręba 2021-05-26 10:00:43 +02:00
parent f02b4c9b4f
commit 08accfc904

View File

@ -16,7 +16,6 @@ pipeline {
stage('copyArtifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's430705-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh "rm -rf movies_imdb"
sh "python3 lab08_mfl.py"
sh "export MLFLOW_TRACKING_URI=http://172.17.0.1:5000"
sh "python3 lab08_mfl.py"
@ -26,7 +25,7 @@ pipeline {
stage('Archive artifacts') {
steps{
archiveArtifacts 'movies_imdb2/**'
archiveArtifacts 'movies_imdb/**'
}
}
}