diff --git a/Jenkinsfile b/Jenkinsfile index 032e89b..aac558a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,6 +11,13 @@ pipeline { steps { ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml' } - } + } + stage("run bash"){ + steps { + bash '''#!/bin/bash + echo "hello world" + ''' + } + } } }