pipeline { agent any parameters{ choice( choices: ['lastSuccessful()', 'lastCompleted()', 'latestSavedBuild()'], description: 'Which build to use for copying artifacts', name: 'BUILD_SELECTOR' )} stages { stage('clear_all') { steps { sh 'rm -rf ium_z444439' } } stage('checkout') { steps { sh 'git clone https://git.wmi.amu.edu.pl/s444439/ium_z444439' } } stage('copy_artifacts') { steps { copyArtifacts filter: 'X_test.csv,X_dev.csv,X_train.csv', fingerprintArtifacts: true, projectName: 'z-s444439-create-dataset', selector: workspace() } } stage('Docker') { agent { dockerfile { filename 'Dockerfile_sec' dir 'ium_z444439' reuseNode true } } steps { sh 'ls -a' sh 'python ./ium_z444439/stats.py' echo 'process finish' archiveArtifacts 'X_test.csv' archiveArtifacts 'X_dev.csv' archiveArtifacts 'X_train.csv' echo 'finish' } } stage('Goodbye!') { steps { archiveArtifacts 'dataset.csv' } } } }