diff --git a/Jenkinsfile b/Jenkinsfile index ffd6cc0..081a1d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,10 @@ pipeline { agent any stages { - stage('Stage 1') { + stage('checkout: Check out from version control') { steps { - echo 'Hello world!' + git branch: 'stable-2.204', + url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git' } } }