first Jenkins

This commit is contained in:
Kamil Paprota 2020-04-03 11:22:15 +02:00
commit e9632d9a29

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}