mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 02:06:46 +00:00
afae8b6e34
* Add additional tests for release/prereleases * Test different plugins configurations * Add some libraries to docker image * Disable SYS_CAPSTONE for now because there is only 3.0.5 * Fix html magic file to respect libmagic's format too < can be used with string so it should be escaped if we want to match the exact string "<html>" * Use plugin License when printing rasm2 plugins in JSON format * Build with system capstone, but do not run tests because they would fail * Fix tiny plugins file to use xtr_fatmach0 instead of just fatmach0 * Use clang to compile with ASAN * Use b_lundef=false * Just test if different plugins configuration build, no r2r * Use sys openssl as well
76 lines
2.7 KiB
Bash
76 lines
2.7 KiB
Bash
#!/bin/bash
|
|
set -x
|
|
|
|
export PATH=${TRAVIS_BUILD_DIR}/install/bin:${PATH}
|
|
export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/install/lib/$(uname -m)-linux-gnu:${TRAVIS_BUILD_DIR}/install/lib:${TRAVIS_BUILD_DIR}/install/lib64:${LD_LIBRARY_PATH}
|
|
git clone -q --depth 1 --branch "${R2R_BRANCH}" "${R2R_REPO}" || true # If cloning fails that's not an error: we simply fallback to master.
|
|
ls radare2-regressions >/dev/null 2>&1 || git clone -q --depth 1 --branch "${R2R_DEFAULT_BRANCH}" "${R2R_DEFAULT_REPO}"
|
|
|
|
if [ "${INSTALL_SYSTEM}" == "meson" ] ; then
|
|
echo "Installing with meson + ninja"
|
|
|
|
OPTS=""
|
|
if [ "${R2_SYS_CAPSTONE}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_capstone=${R2_SYS_CAPSTONE}"
|
|
fi
|
|
if [ "${R2_SYS_MAGIC}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_magic=${R2_SYS_MAGIC}"
|
|
fi
|
|
if [ "${R2_SYS_ZLIB}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_zlib=${R2_SYS_ZLIB}"
|
|
fi
|
|
if [ "${R2_SYS_ZIP}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_zip=${R2_SYS_ZIP}"
|
|
fi
|
|
if [ "${R2_SYS_LZ4}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_lz4=${R2_SYS_LZ4}"
|
|
fi
|
|
if [ "${R2_SYS_OPENSSL}" != "" ] ; then
|
|
OPTS="${OPTS} -D use_sys_openssl=${R2_SYS_OPENSSL}"
|
|
fi
|
|
if [ "${COVERAGE}" == "1" ] ; then
|
|
OPTS="${OPTS} -Db_coverage=true"
|
|
fi
|
|
if [ "${ASAN}" == "1" ] ; then
|
|
# -Db_lundef=false required for issue with clang+meson (see https://github.com/mesonbuild/meson/issues/764)
|
|
OPTS="${OPTS} -Db_sanitize=address -Db_lundef=false"
|
|
fi
|
|
|
|
meson --prefix=${TRAVIS_BUILD_DIR}/install ${OPTS} build || exit 1
|
|
pushd build
|
|
ninja || exit 1
|
|
ninja install || exit 1
|
|
popd
|
|
export PKG_CONFIG_PATH=$(pwd)/build/meson-private:${PKG_CONFIG_PATH}
|
|
else
|
|
echo "Installing with acr + make"
|
|
if [ "${R2_PLUGINS_FILE}" != "" ] ; then
|
|
cp "plugins.${R2_PLUGINS_FILE}.cfg" plugins.cfg
|
|
fi
|
|
if [ "${ASAN}" == "1" ] ; then
|
|
export CFLAGS="${CFLAGS} -O0 -ggdb -fsanitize=address -fno-omit-frame-pointer"
|
|
export LDFLAGS="${LDFLAGS} -O0 -ggdb -fsanitize=address -fno-omit-frame-pointer"
|
|
fi
|
|
./configure --prefix=${TRAVIS_BUILD_DIR}/install > /dev/null || exit 1
|
|
make -s -j2 > /dev/null || exit 1
|
|
make install > /dev/null || exit 1
|
|
export PKG_CONFIG_PATH=${TRAVIS_BUILD_DIR}/pkgcfg:${PKG_CONFIG_PATH}
|
|
fi
|
|
|
|
if [ "${R2_TESTS_DISABLE}" != "1" ] ; then
|
|
export NOOK=1
|
|
export NOREPORT=1
|
|
cd radare2-regressions
|
|
git remote -v
|
|
git branch
|
|
git rev-parse HEAD
|
|
VERBOSE=1 make -k all || exit 1
|
|
|
|
if [ "${COVERAGE}" == "1" ] ; then
|
|
cd ../build
|
|
curl -s https://codecov.io/bash > ./codecov.sh
|
|
chmod +x ./codecov.sh
|
|
./codecov.sh -K -v 2>/dev/null
|
|
fi
|
|
fi
|