Jenkinsfile

This commit is contained in:
Ufnow 2020-04-03 16:17:28 +02:00
parent 037929565b
commit f625b0864d

10
Jenkinsfile vendored Normal file
View File

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