ium_151636/Jenkinsfile
2023-03-22 15:08:02 +01:00

17 lines
320 B
Groovy

pipeline {
agent any
stages {
stage('Stage1') {
steps {
echo ("checkout: check out from version control")
git clone https://git.wmi.amu.edu.pl/s151636/ium_151636.git
echo ("sh: Shell Script")
}
}
}
}