about summary refs log tree commit diff
path: root/scripts/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/builder.sh')
-rwxr-xr-xscripts/builder.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/builder.sh b/scripts/builder.sh
deleted file mode 100755
index 01eb92e..0000000
--- a/scripts/builder.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh -e
-
-gitrepo=$1
-project=$2
-commit=$3
-
-ORIGIN=$(pwd)
-BUILDDIR=$(mktemp -d)
-LOGDIR="/tmp/jitterbug"
-mkdir -p $LOGDIR
-logfile="$LOGDIR/$project.$commit.txt"
-cd $BUILDDIR
-rm -rf $project
-git clone $gitrepo $project
-cd $project
-git checkout $commit
-perl Makefile.PL
-make
-make test 2>&1 > $logfile
-cd ..
-rm -rf $BUILDDIR