diff options
Diffstat (limited to 'config.testing')
-rw-r--r-- | config.testing | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.testing b/config.testing new file mode 100644 index 0000000..24c2283 --- /dev/null +++ b/config.testing @@ -0,0 +1,10 @@ +#!/hint/bash + +# The host architecture +ARCH_HOST=$(uname -m) +# Which architectures should we test building for? +ARCH_BUILD=("$ARCH_HOST"); if [[ $ARCH_HOST == x86_64 ]]; then ARCH_BUILD+=("i686"); fi + +# override the default TMPDIR +[[ -n $MASTER_TMPDIR ]] || export MASTER_TMPDIR="$(mktemp -dt "${0##*/}.XXXXXXXXXX")" +TMPDIR=$MASTER_TMPDIR |