neutral-old/Jenkinsfile
Raphix b4c3c503e9
Some checks failed
Neutral/pipeline/head There was a failure building this commit
Jenkins Test Build #6
2023-03-18 22:56:33 +01:00

26 lines
736 B
Groovy

pipeline {
agent any
stages {
stage('Install Neutral') {
steps {
echo "[Neutral-Deploy] - Installation Stage".
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
}
stage('Test Neutral') {
steps {
echo "[Neutral-Deploy] - Test Stage"
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
},
stage('Deploy Neutral') {
steps {
echo "[Neutral-Deploy] - Deploy Stage"
sh "ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'"
}
}
}
}