Jenkins Test #10
Some checks failed
Neutral/pipeline/head There was a failure building this commit

This commit is contained in:
CICD - Pipeline 2023-03-19 12:05:56 +01:00
parent ab506f1e5c
commit b1ff588c22

10
Jenkinsfile vendored
View File

@ -5,21 +5,21 @@ pipeline {
stage('Install Neutral') { stage('Install Neutral') {
steps { steps {
echo "[Neutral-Deploy] - Installation Stage" echo "[Neutral-Deploy] - Installation Stage"
sh "ssh raphix@raphix.fr 'pwd'" sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'"
} }
} }
stage('Test Neutral') { stage('Test Neutral') {
steps { steps {
echo "[Neutral-Deploy] - Test Stage" echo "[Neutral-Deploy] - Test Stage"
sh "ssh raphix@raphix.fr 'pwd'" sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'"
} }
} }
stage('Deploy Neutral') { stage('Deploy Neutral') {
steps { steps {
echo "[Neutral-Deploy] - Deploy Stage" echo "[Neutral-Deploy] - Deploy Stage"
sh "ssh raphix@raphix.fr 'pwd'" sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'"
} }
} }
} }