psniquiz/Jenkinsfile
mayekkuzu 138796b711
All checks were successful
Job Folder/Gitea Instance/psniquiz/pipeline/head This commit looks good
Added Jenkinsfile
2024-09-26 18:37:24 +03:00

11 lines
151 B
Groovy

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