From 58db36735df3cf5dffe0bd63dca8b61645493f48 Mon Sep 17 00:00:00 2001 From: Raphix Date: Sat, 18 Mar 2023 22:51:27 +0100 Subject: [PATCH] Jenkins Test Build --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() } } }