diff --git a/.freebsdci.sh b/.freebsdci.sh new file mode 100755 index 0000000000000..3a030150949ad --- /dev/null +++ b/.freebsdci.sh @@ -0,0 +1,59 @@ +#!/bin/sh +# FreeBSD CI Build Scripts +# The flow of a FreeBSD CI (https://freebsdci.julialang.org) build: +# +# 1. `compile` +# 2. `build-state` +# 3. `runtests` +# 4. `test-embedding` +# +# Detail of flow is controlled by the variable `factory` +# here. +# https://github.com/iblis17/julia-fbsd-buildbot/blob/master/master/master.cfg +# +# Usage: .freebsdci.sh + +set -xe + +build-state(){ + gmake build-stats +} + +compile(){ + export MALLOC_CONF='junk:false' + export VERBOSE=1 + export FORCE_ASSERTIONS=1 + export LLVM_ASSERTIONS=1 + + gmake all -j $MAKE_JOBS_NUMBER +} + +runtests(){ + export MALLOC_CONF='junk:false' + export VERBOSE=1 + export FORCE_ASSERTIONS=1 + export LLVM_ASSERTIONS=1 + export JULIA_TEST_MAXRSS_MB=600 + export JULIA_CPU_CORES=$MAKE_JOBS_NUMBER + + gmake testall \ + test-download \ + test-pkg \ + test-libgit2-online +} + +test-embedding(){ + export JULIA='../../julia' + export BIN='../../tmp' + + mkdir -vp tmp + gmake -C examples/embedding check +} + + +if [ -z $1 ] +then + exit 1 +fi + +$1