Adding jenkinsfile
gittest/pipeline/head This commit looks good

This commit is contained in:
2026-05-03 07:47:27 +01:00
parent cd020052bb
commit f8e21e79fa
Vendored
+10
View File
@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}