neutral-old/Jenkinsfile
Raphix 75950073b1
Some checks failed
Neutral/pipeline/head There was a failure building this commit
Jenkins Test Build #8
2023-03-18 22:57:35 +01:00

26 lines
734 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'"
}
}
}
}