pipeline {
    agent any
    stages {
        stage('Build') {
            steps {
                dir('/var/jenkins_home/workspace/SamplePipeline/scripts') {
                }
            }
        }
    }
}
