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' } } }