summaryrefslogtreecommitdiffstats
path: root/tools/ci-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ci-build.sh')
-rwxr-xr-xtools/ci-build.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/ci-build.sh b/tools/ci-build.sh
new file mode 100755
index 0000000..d84fdd5
--- /dev/null
+++ b/tools/ci-build.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# Skeleton for continuous integration testing.
+##############################################################################
+
+set -x
+
+export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24 -DSTEPS=10000"
+./configure $@
+
+if [ `uname -s` = "FreeBSD" ]; then
+ make -j $(sysctl -n hw.ncpu)
+else
+ make -j
+fi