From 21d0dbcb60fa6ee1333980b713957ccc915555fd Mon Sep 17 00:00:00 2001 From: JonnyBravo Date: Thu, 16 Mar 2023 22:12:04 +0100 Subject: [PATCH] added --- Jenkinsfile | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) 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" + ''' } }