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

This commit is contained in:
CICD - Pipeline 2023-03-18 22:54:36 +01:00
parent 2b63534d4d
commit fdc39addae

12
Jenkinsfile vendored
View File

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