git checkout

This commit is contained in:
s152483 2020-04-03 11:51:05 +02:00
parent bfde9e1b7d
commit 46d860b1f1

17
Jenkinsfile vendored
View File

@ -1,11 +1,10 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
agent any
stages {
stage('checkout: Check out from version control') {
steps {
git 'https://git.wmi.amu.edu.pl/s152483/s152483-mlworkshops'
}
}
}
}