pipeline { agent { dockerfile { dir 'lab7' } } stages { stage('Stage 1') { steps { sh 'chmod u+x ./lab7/simple_regression_lab7.py' echo 'Copying datasets from create-dataset...' copyArtifacts filter: '*', projectName: 's449288-create-dataset' echo 'Datasets copied' echo 'Conducting simple regression model test' sh 'python3 lab7/simple_regression_lab7.py' echo 'Model and predictions saved' sh 'head lab7/lego_reg_results.csv' echo 'Archiving model...' sh 'ls -lh lab7/lego_reg_model' sh 'tar -czf lab7/lego_reg_model.tar.gz lab7/lego_reg_model/' archiveArtifacts 'lab7/lego_reg_model.tar.gz' echo 'Model archived' echo 'Archiving Sacreds output repo...' sh 'ls -lh lab7/runs/*/' sh 'tar -czf lab7/sacred_runs.tar.gz lab7/runs/' archiveArtifacts 'lab7/sacred_runs.tar.gz' echo 'Sacreds repo archived' echo 'Launching the s449288-evaluation job...' build job: 's449288-evaluation/master/' } } } post { success { emailext body: 'SUCCESS', subject: 's449288-training build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } failure { emailext body: 'FAILURE', subject: 's449288-training build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } unstable { emailext body: 'UNSTABLE', subject: 's449288-training build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } changed { emailext body: 'CHANGED', subject: 's449288-training build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } } }