From 4ed95452d982886c61e28c11f8737fdde207de69 Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Fri, 29 Jan 2021 11:18:01 +0000 Subject: Add the core file decoding+cleanup for the verify jobs - Add better failure reporting and dry run handling for build scripts. Change-Id: Ia19bae15ff4880b07094f4f665e5e00030eda27c Signed-off-by: Andrew Yourtchenko Signed-off-by: Dave Wallace --- jjb/scripts/post_build_deploy_archives.sh | 99 ++++++++++++++++++++++++++----- 1 file changed, 84 insertions(+), 15 deletions(-) mode change 100644 => 100755 jjb/scripts/post_build_deploy_archives.sh (limited to 'jjb/scripts/post_build_deploy_archives.sh') diff --git a/jjb/scripts/post_build_deploy_archives.sh b/jjb/scripts/post_build_deploy_archives.sh old mode 100644 new mode 100755 index 3f68e842b..0a47903e8 --- a/jjb/scripts/post_build_deploy_archives.sh +++ b/jjb/scripts/post_build_deploy_archives.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2020 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -19,34 +19,100 @@ set +e # Do not affect the build result if some part of archiving fails. WS_ARCHIVES_DIR="$WORKSPACE/archives" BUILD_ENV_LOG="$WS_ARCHIVES_DIR/_build-enviroment-variables.log" +# Generate gdb-command script to output vpp stack traceback from core files. +gdb_cmdfile="/tmp/gdb-commands" +cat >$gdb_cmdfile <<'__END__' +# Usage: +# gdb $BINFILE $CORE -ex 'source -v gdb-commands' -ex quit + +set pagination off +thread apply all bt + +define printstack + set $i=0 + while $i < 15 + frame $i + x/i $pc + info locals + info reg + set $i = $i + 1 + end +end +thread apply all printstack + +# info proc mappings + +__END__ + +STACKTRACE="" +# Returns stacktrace filename in STACKTRACE +generate_vpp_stacktrace_and_delete_core() { + local corefile="$1" + if grep -qe 'debug' <<< "$WORKSPACE" ; then + local binfile="$WORKSPACE/build-root/install-vpp_debug-native/vpp/bin/vpp" + else + local binfile="$WORKSPACE/build-root/install-vpp-native/vpp/bin/vpp" + fi + + echo "Generating stack trace from core file: $corefile" + STACKTRACE="${corefile}.stacktrace" + gdb "$binfile" $corefile -ex 'source -v /tmp/gdb-commands' -ex quit > $STACKTRACE + # remove the core to save space + echo "Removing core file: $corefile" + rm -f "$corefile" + # Dump stacktrace to console log + if [ -f $STACKTRACE ] ; then + echo -e "\n=====[ $STACKTRACE ]=====\n$(cat $STACKTRACE)\n=====[ $STACKTRACE ]=====\n" + else + echo "Stacktrace file not generated!" + STACKTRACE="" + fi +} + +# Delete existing archives dir to ensure current artifact upload +rm -rf "$WS_ARCHIVES_DIR" +mkdir -p "$WS_ARCHIVES_DIR" + # Log the build environment variables echo "Logging build environment variables in '$BUILD_ENV_LOG'..." -mkdir -p $WS_ARCHIVES_DIR env > $BUILD_ENV_LOG echo "WS_ARCHIVE_ARTIFACTS = '$WS_ARCHIVE_ARTIFACTS'" -if [ ! -z "${WS_ARCHIVE_ARTIFACTS}" ]; then +if [ -n "${WS_ARCHIVE_ARTIFACTS}" ]; then pushd $WORKSPACE shopt -s globstar # Enable globstar to copy archives archive_artifacts=$(echo ${WS_ARCHIVE_ARTIFACTS}) + shopt -u globstar # Disable globstar for file in $archive_artifacts; do if [ -f "$file" ] ; then - echo "Archiving '$file'..." - mkdir -p $WS_ARCHIVES_DIR/$(dirname $file) - mv $file $WS_ARCHIVES_DIR/$file + fname="$(basename $file)" + # Decompress core.gz file + if grep -qe '^core.*\.gz$' <<<"$fname" ; then + echo "Uncompressing core file $file" + gunzip "$file" + file="${file::(-3)}" + fi + # Convert core file to stacktrace + if [ "${fname::4}" = "core" ] ; then + generate_vpp_stacktrace_and_delete_core $file + [ -z "$STACKTRACE" ] && continue + file=$STACKTRACE + fi + # Set destination filename + if [ "${file::26}" = "/tmp/vpp-failed-unittests/" ] ; then + destfile=$WS_ARCHIVES_DIR${file:25} + else + destfile=$WS_ARCHIVE_DIR$file + fi + echo "Archiving '$file' to '$destfile'" + destdir="$(dirname $destfile)" + mkdir -p $destdir + mv $file $destfile else - echo "Skipping '$file' which is not a file:" - ls -ld $file + echo "Not archiving '$file'" fi done - shopt -u globstar # Disable globstar once archives are copied popd - # Clean up failed 'make test' archive directories for better - # navigation and legibility of log directories. - if [ -d "$WS_ARCHIVES_DIR/tmp" ] ; then - mv $WS_ARCHIVES_DIR/tmp/* $WS_ARCHIVES_DIR - rmdir $WS_ARCHIVES_DIR/tmp - fi fi # find and gzip any 'text' files @@ -55,3 +121,6 @@ find $WS_ARCHIVES_DIR -type f -print0 \ | egrep -e ':.*text.*' \ | cut -d: -f1 \ | xargs -d'\n' -r gzip + +echo "Workspace archived artifacts:" +ls -alR $WS_ARCHIVES_DIR -- cgit 1.2.3-korg