edit jenkinsfile - git command

This commit is contained in:
Yevhenii Poliakov 2023-03-22 15:11:48 +01:00
parent d353688c4c
commit 86cf2c315c

3
Jenkinsfile vendored
View File

@ -5,11 +5,12 @@ pipeline {
stage('Stage1') { stage('Stage1') {
steps { steps {
echo ("checkout: check out from version control") echo ("checkout: check out from version control")
git clone https://git.wmi.amu.edu.pl/s151636/ium_151636.git git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git"
echo ("sh: Shell Script") echo ("sh: Shell Script")
} }
} }
} }