mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 10:16:21 +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
31 lines
787 B
Bash
31 lines
787 B
Bash
#!/bin/bash
|
|
|
|
print_var()
|
|
{
|
|
VAR_NAME=$1
|
|
VAR_VALUE=$2
|
|
if [ "${VAR_VALUE}" != "" ] ; then
|
|
printf "export %s=%q\n" "${VAR_NAME}" "${VAR_VALUE}"
|
|
fi
|
|
}
|
|
|
|
env -0 | while IFS='=' read -r -d '' n v; do
|
|
if [[ "${n}" =~ ^TRAVIS* || "${n}" =~ ^R2* || "${n}" =~ SAN_* || "%{n}" =~ CODECOV_* || "%{n}" =~ VCS_* || "%{n}" =~ CI_* ]]; then
|
|
print_var "${n}" "${v}"
|
|
fi
|
|
done
|
|
|
|
# print extra variables
|
|
print_var CC "${CC}"
|
|
print_var CXX "${CXX}"
|
|
print_var CFLAGS "${CFLAGS}"
|
|
print_var LDFLAGS "${LDFLAGS}"
|
|
print_var CXXFLAGS "${CXXFLAGS}"
|
|
print_var TRAVIS "${TRAVIS}"
|
|
print_var INSTALL_SYSTEM "${INSTALL_SYSTEM}"
|
|
print_var MESON_OPTIONS "${MESON_OPTIONS}"
|
|
print_var COVERAGE "${COVERAGE}"
|
|
print_var ASAN "${ASAN}"
|
|
print_var SHIPPABLE "${SHIPPABLE}"
|
|
print_var CI "${CI}"
|