Added Jenkinsfile
All checks were successful
Job Folder/Gitea Instance/psniquiz/pipeline/head This commit looks good

This commit is contained in:
mayekkuzu 2024-09-26 18:37:24 +03:00
parent 6b10a3fcbe
commit 138796b711

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}