add Jenkinsfile

This commit is contained in:
2026-08-25 02:07:51 +00:00
parent 39c928e193
commit 9f1b753b55
Vendored
+10
View File
@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage("Build") {
steps {
sh "echo CI-OK build de demo-ci en $(hostname)"
}
}
}
}