1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
jsteemann 2017-01-12 17:26:32 +01:00
commit 33a99ac4ba
1 changed files with 31 additions and 0 deletions

31
scripts/build-xc64-deb.sh Normal file
View File

@ -0,0 +1,31 @@
#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export CPU_CORES=$(grep -c ^processor /proc/cpuinfo)
cd ${DIR}/..
EP=""
for i in $@; do
if test "$i" == "--enterprise"; then
EP="EP"
fi
done
./Installation/Jenkins/build.sh \
standard \
--parallel ${CPU_CORES} \
--package DEB \
$SNAP \
--xcArm /usr/bin/aarch64-linux-gnu \
--buildDir build-${EP}deb \
--targetDir /var/tmp/ \
--noopt \
$@
cd ${DIR}/..