Add Pipeline Support
Some checks failed
Subsonics - Pipeline/pipeline/head There was a failure building this commit

This commit is contained in:
Raphix
2023-04-22 16:29:35 +02:00
parent 31ba11951b
commit d8c11761cd
4 changed files with 84 additions and 1 deletions

34
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,34 @@
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 "ENV='TEST' node bin/www"
}
}
}
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"
}
}
}
}
}