Jenkinsfile - v.2

This commit is contained in:
s416122 2020-04-03 13:10:35 +02:00
parent 4e30e90395
commit 1777c89714

4
Jenkinsfile vendored
View File

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