first commit

This commit is contained in:
unknown 2020-04-03 14:08:16 +02:00
parent a08ebcc1e3
commit bf3faa2d1c

View File

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