Add jenkinsfile with 'hello world'

This commit is contained in:
michalzareba 2021-03-28 19:14:52 +02:00
parent 132f595d3c
commit 94240a18b7

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}