mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
a5e35180c7
See #27 and #40 for details.
20 lines
509 B
Bash
Executable File
20 lines
509 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e -u -x
|
|
. other/travis/env-$ENV.sh
|
|
|
|
# Build toxcore and run tests.
|
|
./autogen.sh
|
|
./configure \
|
|
--with-libsodium-libs=$CACHE_DIR/lib \
|
|
--with-libsodium-headers=$CACHE_DIR/include \
|
|
--enable-daemon \
|
|
--enable-logging \
|
|
--enable-ntox \
|
|
CFLAGS="-DTRAVIS_ENV=1"
|
|
|
|
# We use make instead of RUN $MAKE here, because the autotools build will only
|
|
# ever run natively on the Linux container, never on a Windows cross compilation
|
|
# docker instance or an OSX machine.
|
|
make distcheck -j$NPROC -k
|