diff --git a/Jenkinsfile b/Jenkinsfile index 8b2c8ca..1d58234 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,9 +2,14 @@ pipeline { agent any stages { - stage('Hello') { + stage('Stage1') { steps { - echo 'Hello World' + echo ("checkout: check out from version control") + git clone https://git.wmi.amu.edu.pl/s151636/ium_151636.git + + echo ("sh: Shell Script") + + } } }