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 { pipeline {
agent any agent any
stages {
stages { stage('checkout: Check out from version control') {
stage('Hello') { steps {
steps { git 'https://git.wmi.amu.edu.pl/s152483/s152483-mlworkshops'
echo 'Hello World' }
} }
} }
}
} }