video-server-backend/Jenkinsfile
Jose134 620217e4b3
All checks were successful
gitea/video-server-backend/pipeline/head This commit looks good
Add placeholder jenkinsfile
2024-08-10 00:42:22 +02:00

12 lines
152 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}