added jenkinsfile

This commit is contained in:
Nico
2025-07-16 18:24:23 +02:00
parent 37b2173dcc
commit 0e787c0708

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo "hello wordl"
sh "python3 --version"
}
}
}
}