add Hello World Jenkinsfile

This commit is contained in:
s444510 2023-03-25 13:44:43 +01:00
parent 0c1f8da17e
commit 7c25388a3f

10
Jenkinsfile vendored Normal file
View File

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