neutral-old/Jenkinsfile

22 lines
642 B
Plaintext
Raw Normal View History

2023-03-18 18:20:17 +01:00
pipeline {
agent any
stages {
2023-03-18 22:47:09 +01:00
stage('Test Neutral') {
steps {
2023-03-19 12:05:56 +01:00
echo "[Neutral-Deploy] - Test Stage"
2023-03-19 14:23:55 +01:00
// sh "git clone git clone https://git.raphix.fr/infrastructure/neutral.git neutral"
2023-03-18 22:56:33 +01:00
2023-03-18 18:20:17 +01:00
}
2023-03-18 22:57:04 +01:00
}
2023-03-18 18:20:17 +01:00
stage('Deploy Neutral') {
steps {
2023-03-19 12:05:56 +01:00
echo "[Neutral-Deploy] - Deploy Stage"
2023-03-19 14:24:45 +01:00
sh "ssh raphix@raphix.fr sudo apt update -y"
sh "ssh raphix@raphix.fr sudo apt upgrade -y"
2023-03-19 14:23:55 +01:00
sh "ssh raphix@raphix.fr /home/gitlab-ci/neutral_deploy.sh"
2023-03-18 18:20:17 +01:00
}
}
}
}