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