pipeline { agent any stages { stage('Checkout repository') { steps { checkout scmGit(branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's464980_token', url: 'https://git.wmi.amu.edu.pl/s464980/IUM_s464980.git']]) } } stage('Download and process data') { steps { echo "Hello" } } } }