Jenkinsfile git checkout

This commit is contained in:
Maciej Sobkowiak 2021-03-28 22:28:55 +02:00
parent 9e9e1fa2d6
commit abc1dd473d

5
Jenkinsfile vendored
View File

@ -1,9 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
stage('checkout: Check out from version control') {
steps {
echo 'Hello world!'
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
}
}
}