pipeline { agent any stages { stage('Build') { steps { sh '''#!/bin/bash echo shell commands here ''' } } } }