diff --git a/Jenkinsfile_mlflow_coop b/Jenkinsfile_mlflow_coop index be28965..83cac2d 100644 --- a/Jenkinsfile_mlflow_coop +++ b/Jenkinsfile_mlflow_coop @@ -8,26 +8,15 @@ pipeline { ) } stages { - stage('copyArtifacts') { - steps { - copyArtifacts fingerprintArtifacts: true, projectName: 's430705-training/master', selector: buildParameter('BUILD_SELECTOR') - } - } stage('training') { steps { - sh 'rm -rf movies_imdb' sh 'chmod +x pred_from_mlflow_model.py' sh 'python3 pred_from_mlflow_model.py' } } - stage('archiveArtifacts') { - steps{ - archiveArtifacts 'movies_imdb/**' - } - } stage('sendMail') { steps{ - emailext body: currentBuild.result ?: 'MLFLOW PREDICT SUCCESS', + emailext body: currentBuild.result ?: 'MLFLOW PREDICT COOP SUCCESS', subject: 's434804', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' }