neutral-old/Jenkinsfile

26 lines
629 B
Plaintext
Raw Normal View History

2023-03-18 17:20:17 +00:00
pipeline {
agent any
stages {
2023-03-18 21:47:09 +00:00
stage('Install Neutral') {
2023-03-18 17:20:17 +00:00
steps {
2023-03-18 21:57:35 +00:00
echo "[Neutral-Deploy] - Installation Stage"
2023-03-19 11:03:29 +00:00
sh "ssh raphix@raphix.fr 'pwd'"
2023-03-18 21:56:33 +00:00
2023-03-18 21:47:09 +00:00
}
}
stage('Test Neutral') {
steps {
2023-03-18 21:54:36 +00:00
echo "[Neutral-Deploy] - Test Stage"
2023-03-19 11:03:29 +00:00
sh "ssh raphix@raphix.fr 'pwd'"
2023-03-18 21:56:33 +00:00
2023-03-18 17:20:17 +00:00
}
2023-03-18 21:57:04 +00:00
}
2023-03-18 17:20:17 +00:00
stage('Deploy Neutral') {
steps {
2023-03-18 21:54:36 +00:00
echo "[Neutral-Deploy] - Deploy Stage"
2023-03-19 11:03:29 +00:00
sh "ssh raphix@raphix.fr 'pwd'"
2023-03-18 17:20:17 +00:00
}
}
}
}