Files
jenkins-test-repo/Jenkinsfile
Pavel Kachalouski c4a03eb07d SQL
2023-01-22 17:42:21 +01:00

14 lines
220 B
Groovy

pipeline {
agent any
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
sql sql: "select * from test;"
}
}
}
}