neutral-old/Jenkinsfile
Raphix 4832e2c65b
Some checks failed
Neutral/pipeline/head There was a failure building this commit
Test Neutral Pipeline #8
2023-03-19 18:18:36 +01:00

46 lines
1.5 KiB
Groovy

pipeline {
agent any
stages {
stage('[Neutral] - Check Version') {
steps {
script {
def commit_name = sh "ssh raphix@raphix.fr sudo -S -u gitlab-ci git log -1 --pretty=%B"
if(commit_name.contains("@")) {
echo "[Neutral] - Deployement version reconnu"
} else {
currentBuild.result = 'ABORTED'
return
}
}
}
}
stage('[Neutral] - Test') {
steps {
echo "[Neutral-Deploy] - Test Stage"
sh "rm -rf neutral"
sh "git clone https://git.raphix.fr/infrastructure/neutral.git"
sh "cd neutral"
sh "npm i"
sh "ENV='TEST' node bin/www"
}
}
stage('[Neutral] - Déploiement') {
steps {
script {
def doesJavaRock = input(message: 'Confirmation de Déploiement', ok: 'Déployer')
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"
}
}
}
}
}