Add Jenkinsfile

This commit is contained in:
2026-02-28 20:42:37 +00:00
parent 8a3d6e5adb
commit 431fda5bc1

1
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1 @@
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}