Jenkins Test Build
Some checks failed
Neutral/pipeline/head There was a failure building this commit

This commit is contained in:
CICD - Pipeline 2023-03-18 22:47:09 +01:00
parent 34062c1dfa
commit 962395a0ff

14
Jenkinsfile vendored
View File

@ -2,14 +2,22 @@ pipeline {
agent any
stages {
stage('Testing Express Node JS') {
stage('Install Neutral') {
steps {
echo "Testing Neutral"
echo "[Neutral-Deploy] - Installation Stage".
ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'
}
}
stage('Test Neutral') {
steps {
echo "[Neutral-Deploy] - Test Stage"
ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'
}
}
stage('Deploy Neutral') {
steps {
echo "Deploying Neutral"
echo "[Neutral-Deploy] - Deploy Stage"
ssh -i /home/raphix/sshkey/alpha raphix@alpha.raphix.fr 'pwd'
}
}
}