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