diff --git a/Jenkinsfile b/Jenkinsfile index 96cafbe..b7315fe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,14 @@ pipeline { agent any stages { - stage('Stage 1') { + stage('Checkout repository') { steps { - echo 'Hello world!' + 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" } } }