neutral-old/Jenkinsfile

25 lines
766 B
Plaintext
Raw Normal View History

2023-03-18 17:20:17 +00:00
pipeline {
agent any
stages {
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"
sh "git clone git clone https://git.raphix.fr/infrastructure/neutral.git"
sh "cd neutral"
sh "npm i"
sh "PORT=3100 node bin/www"
2023-03-18 17:20:17 +00:00
}
2023-03-18 21:57:04 +00:00
}
stage('[Neutral] - Deploy') {
2023-03-18 17:20:17 +00:00
steps {
2023-03-19 11:05:56 +00:00
echo "[Neutral-Deploy] - Deploy Stage"
2023-03-19 13:24:45 +00:00
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-18 17:20:17 +00:00
}
}
}
}