pipeline { agent { docker { image 'ium' } } stages { stage('Run Script') { steps { echo ("checkout: check out from version control") git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git" echo ("sh: Shell Script") sh "./script1" echo ("copyArtifacts") echo("archiveArtifacts") } } } }