X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=.ci%2Flinux-build.sh;h=67d68535e03865718ff1b4b8b5d147f9cb4b2687;hb=08dfff78f200bb9f077b0006ef05ab59dbc40ac8;hp=d2c821adf3fbee7ede710ae32eb26b7d699b959b;hpb=443267090edc42e7c3d0e6e5dbc7580d0b27163c;p=dpdk.git diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index d2c821adf3..67d68535e0 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -4,7 +4,10 @@ on_error() { if [ $? = 0 ]; then exit fi - FILES_TO_PRINT="build/meson-logs/testlog.txt build/.ninja_log build/meson-logs/meson-log.txt" + FILES_TO_PRINT="build/meson-logs/testlog.txt" + FILES_TO_PRINT="$FILES_TO_PRINT build/.ninja_log" + FILES_TO_PRINT="$FILES_TO_PRINT build/meson-logs/meson-log.txt" + FILES_TO_PRINT="$FILES_TO_PRINT build/gdb.log" for pr_file in $FILES_TO_PRINT; do if [ -e "$pr_file" ]; then @@ -30,9 +33,39 @@ install_libabigail() { rm ${version}.tar.gz } +configure_coredump() { + # No point in configuring coredump without gdb + which gdb >/dev/null || return 0 + ulimit -c unlimited + sudo sysctl -w kernel.core_pattern=/tmp/dpdk-core.%e.%p +} + +catch_coredump() { + ls /tmp/dpdk-core.*.* 2>/dev/null || return 0 + for core in /tmp/dpdk-core.*.*; do + binary=$(sudo readelf -n $core |grep $(pwd)/build/ 2>/dev/null |head -n1) + [ -x $binary ] || binary= + sudo gdb $binary -c $core \ + -ex 'info threads' \ + -ex 'thread apply all bt full' \ + -ex 'quit' + done |tee -a build/gdb.log + return 1 +} + if [ "$AARCH64" = "true" ]; then - # convert the arch specifier - OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc" + # Note: common/cnxk is disabled for Ubuntu 18.04 + # https://bugs.dpdk.org/show_bug.cgi?id=697 + OPTS="$OPTS -Ddisable_drivers=common/cnxk" + if [ "${CC%%clang}" != "$CC" ]; then + OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_clang_ubuntu1804" + else + OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc" + fi +fi + +if [ "$PPC64LE" = "true" ]; then + OPTS="$OPTS --cross-file config/ppc/ppc64le-power8-linux-gcc-ubuntu1804" fi if [ "$BUILD_DOCS" = "true" ]; then @@ -41,6 +74,7 @@ fi if [ "$BUILD_32BIT" = "true" ]; then OPTS="$OPTS -Dc_args=-m32 -Dc_link_args=-m32" + OPTS="$OPTS -Dcpp_args=-m32 -Dcpp_link_args=-m32" export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig" fi @@ -50,14 +84,23 @@ else OPTS="$OPTS -Dexamples=all" fi -OPTS="$OPTS -Dmachine=default" +OPTS="$OPTS -Dplatform=generic" OPTS="$OPTS --default-library=$DEF_LIB" OPTS="$OPTS --buildtype=debugoptimized" +OPTS="$OPTS -Dcheck_includes=true" +if [ "$MINI" = "true" ]; then + OPTS="$OPTS -Denable_drivers=bus/vdev,mempool/ring,net/null" + OPTS="$OPTS -Ddisable_libs=*" +fi meson build --werror $OPTS ninja -C build -if [ "$AARCH64" != "true" ]; then - devtools/test-null.sh +if [ "$AARCH64" != "true" ] && [ "$PPC64LE" != "true" ]; then + failed= + configure_coredump + devtools/test-null.sh || failed="true" + catch_coredump + [ "$failed" != "true" ] fi if [ "$ABI_CHECKS" = "true" ]; then @@ -102,5 +145,9 @@ if [ "$ABI_CHECKS" = "true" ]; then fi if [ "$RUN_TESTS" = "true" ]; then - sudo meson test -C build --suite fast-tests -t 3 + failed= + configure_coredump + sudo meson test -C build --suite fast-tests -t 3 || failed="true" + catch_coredump + [ "$failed" != "true" ] fi