pipeline { agent any parameters{ gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH' } stages { stage('clear_before') { steps { sh 'rm -rf *' } } stage('Clone Git') { steps { sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686' } } stage('copy_artifacts') { steps { copyArtifacts(projectName: 'z-s434686-training/master', fingerprintArtifacts: true) } } stage('copy_artifacts_from_inside') { steps { copyArtifacts(projectName: 'z-s434686-evaluation/master', fingerprintArtifacts: true, optional: true) } } stage('copy_artifacts_test_data') { steps { copyArtifacts(projectName: 'z-s434686-create-dataset', filter: 'X_test.csv,Y_test.csv', fingerprintArtifacts: true) } } stage('Docker') { agent { dockerfile { filename 'Dockerfile' dir 'ium_z434686' reuseNode true } } steps { sh 'ls -a' sh 'python ./ium_z434686/predict.py' sh 'python ./ium_z434686/plot.py' archiveArtifacts 'prediction.csv' archiveArtifacts 'metrics.csv' archiveArtifacts 'metrics.png' } } stage('clear_after') { steps { sh 'rm -rf *' } } } }