summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-01 15:34:28 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-01 15:34:28 +0200
commitcd45b624c2944998295d40d5f1f7e41fce972b7f (patch)
treef6ccdf356433e094542ca0fad721bcf8c133ba58
-rw-r--r--Makefile12
-rw-r--r--post-receive.tmpl11
2 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f0cd797
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.PHONY: all install
+
+PREFIX?=/var/empty
+
+all: post-receive
+ @echo Done
+
+%: %.tmpl %.json
+ jinja2 --outfile=$@ --format=json $@.tmpl $@.json
+
+install: post-receive
+ cp post-receive ${PREFIX}/
diff --git a/post-receive.tmpl b/post-receive.tmpl
new file mode 100644
index 0000000..5d80cce
--- /dev/null
+++ b/post-receive.tmpl
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+hook_active= {{ active }}
+remote_url= {{ ci_url }}
+
+if [ "$hook_active" == false ]; then
+ echo 'Notify ci hook is not active!'
+ exit -1
+fi
+
+