Create Jenkinsfile

This commit is contained in:
KubaGrid 2024-08-13 18:53:49 +02:00 committed by GitHub
parent 0619b72113
commit 9afaf99275
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
stages {
stage("Hello world") {
sh """
echo 'Hello world'
"""
}
}
}