diff --git a/Jenkinsfile b/Jenkinsfile index aac558a..10ec7ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,23 +1,7 @@ -pipeline { - agent any - stages { - stage ("SCM checkout") { - steps { - git "https://gitea.schlaubistechtalk.de/JonnyBravo/test_play.git" - - } - } - stage(" execute Ansible") { - steps { - ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml' - } - } - stage("run bash"){ - steps { - bash '''#!/bin/bash - echo "hello world" - ''' - } - } +stage('Setting the variables values') { + steps { + bash '''#!/bin/bash + echo "hello world" + ''' } }