added jenkinsfile

This commit is contained in:
Patric 2024-06-15 01:54:58 +02:00
parent 6ec80e0db6
commit 2b1b064d9a
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

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