ck/tools/ci-build.sh
Daniel Baumann 9e09e0ef69
Merging upstream version 0.7.1 (Closes: #991419).
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 07:39:31 +01:00

15 lines
320 B
Bash
Executable file

#!/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