psniquiz/Jenkinsfile

11 lines
144 B
Plaintext
Raw Normal View History

2024-09-26 18:37:24 +03:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
2024-09-26 19:21:47 +03:00
sh 'ls'
2024-09-26 18:37:24 +03:00
}
}
}
}