jenkinsfile

This commit is contained in:
unknown 2020-04-03 11:19:21 +02:00
parent 876876fe94
commit dd69afc602

10
jenkinsfile Normal file
View File

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