Jenkinsfile

This commit is contained in:
s460941 2020-04-03 13:00:25 +02:00
parent 4cddd292c4
commit e7e550ca79

10
Jenkinsfile vendored Normal file
View File

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