diff --git a/Jenkinsfile b/Jenkinsfile index 86b5ad9..05c97a8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,19 +5,19 @@ pipeline { stage('Install Neutral') { steps { echo "[Neutral-Deploy] - Installation Stage". - ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' + ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'.execute() } } stage('Test Neutral') { steps { echo "[Neutral-Deploy] - Test Stage" - ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' + ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'.execute() } } stage('Deploy Neutral') { steps { echo "[Neutral-Deploy] - Deploy Stage" - ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' + "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute() } } }