diff --git a/Jenkinsfile b/Jenkinsfile index 03b592d..d95500e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,11 +12,22 @@ pipeline { cleanWs() } } - stage ('Checkout') { + stage('Checkout') { steps { - checkout([$class: 'GitSCM', branches: [[name: 'master']], extensions: [], userRemoteConfigs: [[credentialsId: 'tools-deploy-key', url: '_gitea@gitea.release11.com:R11/release11-tools.git']]]) + checkout([ + $class: 'GitSCM', + branches: [[name: 'master']], + extensions: [], + userRemoteConfigs: [[credentialsId: 'tools-deploy-key', url: '_gitea@gitea.release11.com:R11/release11-tools.git']] + ]) } } + stage('Run Ansible playbook') { + sh ''' + pwd + ls + ''' + } } }