neutral-old/Jenkinsfile

46 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-03-18 17:20:17 +00:00
pipeline {
agent any
stages {
2023-03-19 17:18:36 +00:00
stage('[Neutral] - Check Version') {
steps {
script {
2023-03-19 17:23:52 +00:00
def commit_name = sh "ssh raphix@raphix.fr sudo -S -u gitlab-ci cd /neutral/ && git log -1 --pretty=%B"
2023-03-19 17:18:36 +00:00
if(commit_name.contains("@")) {
echo "[Neutral] - Deployement version reconnu"
} else {
currentBuild.result = 'ABORTED'
return
}
}
}
}
stage('[Neutral] - Test') {
2023-03-18 21:47:09 +00:00
steps {
2023-03-19 11:05:56 +00:00
echo "[Neutral-Deploy] - Test Stage"
2023-03-19 16:41:16 +00:00
sh "rm -rf neutral"
2023-03-19 16:41:49 +00:00
sh "git clone https://git.raphix.fr/infrastructure/neutral.git"
2023-03-19 16:41:16 +00:00
sh "cd neutral"
sh "npm i"
2023-03-19 16:45:55 +00:00
sh "ENV='TEST' node bin/www"
2023-03-19 16:55:09 +00:00
2023-03-18 17:20:17 +00:00
}
2023-03-18 21:57:04 +00:00
}
2023-03-19 17:18:36 +00:00
stage('[Neutral] - Déploiement') {
2023-03-18 17:20:17 +00:00
steps {
2023-03-19 16:56:35 +00:00
script {
2023-03-19 17:03:57 +00:00
def doesJavaRock = input(message: 'Confirmation de Déploiement', ok: 'Déployer')
2023-03-19 17:02:41 +00:00
echo "[Neutral-Deploy] - Deploy Stage"
sh "ssh raphix@raphix.fr sudo apt update -y"
sh "ssh raphix@raphix.fr sudo apt upgrade -y"
sh "ssh raphix@raphix.fr sudo -S -u gitlab-ci /home/gitlab-ci/neutral_deploy.sh"
2023-03-19 16:56:35 +00:00
}
2023-03-19 17:00:57 +00:00
2023-03-18 17:20:17 +00:00
}
}
}
}