Browse Source

Define continuous integration script structure

DricomDragon 5 years ago
parent
commit
f41d31591b
3 changed files with 15 additions and 0 deletions
  1. 3 0
      ci/ci-job.fish
  2. 2 0
      ci/git-post-receive.fish
  3. 10 0
      ci/install-web-files.fish

+ 3 - 0
ci/ci-job.fish

@@ -0,0 +1,3 @@
+#!/usr/bin/fish
+# Job script for continuous integration
+# Please rename to : WebLand.run

+ 2 - 0
ci/git-post-receive.fish

@@ -0,0 +1,2 @@
+#!/usr/bin/fish
+# Git hook to be deployed on server to trigger ci job

+ 10 - 0
ci/install-web-files.fish

@@ -0,0 +1,10 @@
+#!/usr/bin/fish
+# Aim at deploying on local httpd server
+set fish_trace 1
+
+echo $WEBLAND_WEB_DEPLOY_PATH
+if not set -q WEBLAND_WEB_DEPLOY_PATH
+	exit 1
+end
+
+exit 0