diff --git a/Jenkinsfile b/Jenkinsfile index 14dfea9e2..8e0284a34 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,8 @@ pipeline { } stage('deploy') { steps { - sh ansible + sh 'ansible -i ./ansible/hosts -m ping all' + sh 'ansible-playbook -i ./ansible/hosts ./ansible/spc.yaml' } } }