Compare commits

3 Commits

Author SHA1 Message Date
9355d9b2de Test Jenkinsfile
All checks were successful
Gitea/Status/pipeline/head This commit looks good
2024-05-05 19:58:01 +02:00
dc9c7eabc6 Merge branch 'main' of ssh://gitssh.mainserverprivate.org:8222/vgallegoiz/Status 2024-05-05 19:51:48 +02:00
e976c48103 Test Jenkinsfile 2024-05-05 19:51:29 +02:00

10
Jenkinsfile vendored Normal file
View File

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