This commit is contained in:
Diana-Krol 2020-04-03 13:55:25 +02:00
parent b044a7a011
commit 0fb48d030a

View File

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