Merge commit 'e988fee1679536137b87d10e939eff5c1f27c8ab' as 'libs/libzmq'

This commit is contained in:
Henry Winkel
2022-10-22 14:31:55 +02:00
1118 changed files with 149390 additions and 0 deletions

22
libs/libzmq/ci_build.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -x
set -e
if [ $BUILD_TYPE = "default" ]; then
mkdir tmp
BUILD_PREFIX=$PWD/tmp
source config.sh
set_config_opts
# Build and check this project
(
./autogen.sh &&
./configure "${CONFIG_OPTS[@]}" &&
export DISTCHECK_CONFIGURE_FLAGS="${CONFIG_OPTS[@]}" &&
make VERBOSE=1 -j5 ${CHECK}
) || exit 1
else
cd ./builds/${BUILD_TYPE} && ./ci_build.sh
fi