24 lines
723 B
Groovy
24 lines
723 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Install Neutral') {
|
|
steps {
|
|
echo "[Neutral-Deploy] - Installation Stage".
|
|
"ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute()
|
|
}
|
|
}
|
|
stage('Test Neutral') {
|
|
steps {
|
|
echo "[Neutral-Deploy] - Test Stage"
|
|
"ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute()
|
|
}
|
|
}
|
|
stage('Deploy Neutral') {
|
|
steps {
|
|
echo "[Neutral-Deploy] - Deploy Stage"
|
|
"ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'".execute()
|
|
}
|
|
}
|
|
}
|
|
} |