jenkinsfile

This commit is contained in:
unknown 2020-04-03 11:24:17 +02:00
parent 2d2f8f950d
commit ff1a8d7813

10
Jenkinsfile vendored Normal file
View File

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