bot/Jenkinsfile
Raphix 39068afce4
Some checks failed
Subsonics - Pipeline/pipeline/head There was a failure building this commit
Fix Pipeline Support #2
2023-04-22 16:34:55 +02:00

35 lines
1.1 KiB
Groovy

pipeline {
agent any
stages {
stage('[Subsonics] - Test') {
steps {
script {
echo "[Subsonics-Deploy] - Test Stage"
sh "rm -rf subsonics"
sh "git clone https://git.raphix.fr/raphix/subsonics.git"
sh "cd subsonics"
sh "npm i"
sh "cd src"
sh "ENV='TEST' node main.js"
}
}
}
stage('[Subsonics] - Déploiement') {
steps {
script {
def doesJavaRock = input(message: 'Confirmation de Déploiement', ok: 'Déployer')
echo "[Subsonics-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/subsonics_deploy.sh"
}
}
}
}
}