pipeline { agent any stages { stage('Check out from version control') { steps { checkout scm } } stage('Shell Script') { steps { sh '''#!/bin/bash sh './script.sh' ''' } } } }