pipeline { agent { docker { image 'docker_image' } } parameters{ buildSelector( defaultSelector: lastSuccessful(), name: 'BUILD_SELECTOR', description: 'Which build to use for copying artifacts' ) } stages { stage("Script") { steps { sh 'chmod +x ./lab2/stats.sh' sh "./lab2/stats.sh" archiveArtifacts 'stats.txt' } } } }