Jenkins file

This commit is contained in:
Ufnow 2020-04-03 16:12:08 +02:00
commit 60131a423d

10
jenkinsfile Normal file
View File

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