pipeline { agent none stages{ stage('Setting the variables values') { agent any steps { bash '''#!/bin/bash echo "hello world" ''' } } } }