Test Jenkinsfile
All checks were successful
Gitea/Status/pipeline/head This commit looks good

This commit is contained in:
2024-05-05 19:58:01 +02:00
parent dc9c7eabc6
commit 9355d9b2de

10
Jenkinsfile vendored
View File

@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage("Hello") {
steps {
echo "Hello world"
}
}
}
}