init Jenkinsfile

This commit is contained in:
Basyrov Rustam
2025-06-09 11:24:56 +03:00
parent a9df789b04
commit 6b4e12697f

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello from Jenkins'
}
}
}
}