Add Jenkinsfile

This commit is contained in:
2026-02-05 17:16:21 +00:00
parent 7ce20f3395
commit 552b8716db

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo "Rulez din Gitea!"'
sh 'ls -la'
}
}
}
}