mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-03 01:39:16 +02:00
59 lines
1.4 KiB
Bash
Executable file
59 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Build the Delta Chat C/Rust library
|
|
# typically run in a docker container that contains all library deps
|
|
# but should also work outside if you have the dependencies installed
|
|
# on your system.
|
|
|
|
set -e -x
|
|
|
|
# perform clean build of core and install
|
|
export NINJA_BUILD_DIR=.docker-corebuild
|
|
export TOXWORKDIR=.docker-tox
|
|
[ -d "$NINJA_BUILD_DIR" ] && rm -rf "$NINJA_BUILD_DIR"
|
|
|
|
meson $MESONARGS -Drpgp=true "$NINJA_BUILD_DIR" .
|
|
|
|
pushd $NINJA_BUILD_DIR
|
|
ninja
|
|
ninja install
|
|
ldconfig -v
|
|
popd
|
|
|
|
|
|
# configure access to a base python and
|
|
# to several python interpreters needed by tox below
|
|
export PATH=$PATH:/opt/python/cp35-cp35m/bin
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
pushd /bin
|
|
ln -s /opt/python/cp27-cp27m/bin/python2.7
|
|
ln -s /opt/python/cp36-cp36m/bin/python3.6
|
|
ln -s /opt/python/cp37-cp37m/bin/python3.7
|
|
popd
|
|
|
|
if [ -n "$TESTS" ]; then
|
|
|
|
pushd $NINJA_BUILD_DIR
|
|
# ninja test -> XXX fails because of encoding problem
|
|
popd
|
|
|
|
echo ----------------
|
|
echo run python tests
|
|
echo ----------------
|
|
|
|
pushd python
|
|
# first run all tests ...
|
|
rm -rf tests/__pycache__
|
|
rm -rf src/deltachat/__pycache__
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
tox --workdir "$TOXWORKDIR" -e py27,py35,py36,py37
|
|
popd
|
|
fi
|
|
|
|
|
|
if [ -n "$DOCS" ]; then
|
|
echo -----------------------
|
|
echo generating python docs
|
|
echo -----------------------
|
|
(cd python && tox --workdir "$TOXWORKDIR" -e doc)
|
|
fi
|