From 962395a0ff819042ce65d1109634d450e349b2c5 Mon Sep 17 00:00:00 2001 From: Raphix Date: Sat, 18 Mar 2023 22:47:09 +0100 Subject: [PATCH] Jenkins Test Build --- Jenkinsfile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 013cfc0..86b5ad9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,14 +2,22 @@ pipeline { agent any stages { - stage('Testing Express Node JS') { + stage('Install Neutral') { steps { - echo "Testing Neutral" + echo "[Neutral-Deploy] - Installation Stage". + ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' + } + } + stage('Test Neutral') { + steps { + echo "[Neutral-Deploy] - Test Stage" + ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' } } stage('Deploy Neutral') { steps { - echo "Deploying Neutral" + echo "[Neutral-Deploy] - Deploy Stage" + ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd' } } }