psniquiz/Jenkinsfile
mayekkuzu 6f5df06e45
All checks were successful
Job Folder/Gitea Instance/psniquiz/pipeline/head This commit looks good
Update Jenkinsfile
2024-09-26 19:21:47 +03:00

11 lines
144 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh 'ls'
}
}
}
}