neutral-old/Jenkinsfile
Raphix a9482fe45c
Some checks failed
Neutral/pipeline/head There was a failure building this commit
Jenkins Test #11
2023-03-19 12:11:45 +01:00

26 lines
625 B
Groovy

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