neutral-old/Jenkinsfile
Raphix 9a354b69b5
All checks were successful
Neutral/pipeline/head This commit looks good
Jenkins Test #12
2023-03-19 12:16:34 +01:00

26 lines
631 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 'echo Test'"
}
}
}
}