Update Jenkinsfile to test webhook

This commit is contained in:
2026-02-28 20:48:29 +00:00
parent 431fda5bc1
commit 76c0320ca3

13
Jenkinsfile vendored
View File

@@ -1 +1,12 @@
pipeline {\n agent any\n stages {\n stage("Hello") {\n steps {\n echo "Hello from Gitea + Jenkins CI\!"\n echo "Build triggered by webhook"\n }\n }\n }\n}
pipeline {
agent any
stages {
stage("Build") {
steps {
echo "Hello from Gitea + Jenkins CI"
echo "Webhook trigger is working"
sh "date"
}
}
}
}