jenkinsfile

This commit is contained in:
s452108 2020-04-03 11:12:27 +02:00
parent d540f67a22
commit 0582ba3e44

12
jenkinsfile Normal file
View File

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