Browse Source

Merge branch 'ft/jenkinsfile/82' into dev

DricomDragon 5 years ago
parent
commit
cdda92061c
3 changed files with 45 additions and 0 deletions
  1. 8 0
      README.md
  2. 24 0
      undeployed/ci/jenkinsfile
  3. 13 0
      undeployed/scripts/deploy-local-httpd.sh

+ 8 - 0
README.md

@@ -4,4 +4,12 @@ Jovian portfolio and resume
 
 ## Test locally
 
+### Before committing
+
+Start a standalone PHP server on port 8080.
+
 Run `undeployed/scripts/serve-home.sh`
+
+### Deploy on local apache
+
+Run `undeployed/scripts/deploy-local-httpd.sh`

+ 24 - 0
undeployed/ci/jenkinsfile

@@ -0,0 +1,24 @@
+#!/usr/bin/env groovy
+
+pipeline {
+    agent { label 'prod' }
+    stages {
+        stage('Check env') {
+            steps {
+                echo "Displaying Jenkins environment variables ..."
+                echo "BRANCH_NAME : ${env.BRANCH_NAME}"
+                echo "JOVIAN_WEB_DEPLOY_PATH : ${env.JOVIAN_WEB_DEPLOY_PATH}"
+                echo "JOVIAN_WEB_PREPROD_PATH : ${env.JOVIAN_WEB_PREPROD_PATH}"
+                echo "Done."
+            }
+        }
+        stage('Deploy') {
+            when { branch 'master' }
+            steps {
+                sh "undeployed/scripts/deploy/up-date.sh"
+                sh "undeployed/scripts/deploy/up-version.sh"
+                sh "rsync --delete --recursive --verbose web/ ${env.JOVIAN_WEB_DEPLOY_PATH}"
+            }
+        }
+    }
+}

+ 13 - 0
undeployed/scripts/deploy-local-httpd.sh

@@ -0,0 +1,13 @@
+#!/bin/bash
+# Deploy on local Apache2 Httpd instance
+
+from="`git rev-parse --show-toplevel`/web/"
+dest="/var/www/html/"
+
+echo "A copy will be peformed from ..."
+echo $from
+echo " ... to ... "
+echo $dest
+
+rsync --delete --recursive --verbose $from $dest
+