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

This commit is contained in:
CICD - Pipeline 2023-03-18 22:56:33 +01:00
parent fdc39addae
commit b4c3c503e9

13
Jenkinsfile vendored
View File

@ -5,22 +5,21 @@ pipeline {
stage('Install Neutral') {
steps {
echo "[Neutral-Deploy] - Installation Stage".
String result = "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute().text
println result.toUpperCase()
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
}
stage('Test Neutral') {
steps {
echo "[Neutral-Deploy] - Test Stage"
String result = "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute().text
println result.toUpperCase()
}
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
},
stage('Deploy Neutral') {
steps {
echo "[Neutral-Deploy] - Deploy Stage"
String result = "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute().text
println result.toUpperCase()
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
}
}