Skip to content

Commit

Permalink
Update after review
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Vamos <[email protected]>
  • Loading branch information
AttilaVamos committed Feb 7, 2025
1 parent fa6a905 commit ac44944
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test-unit-gh_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ on:
required: false
default: 'bison flex build-essential binutils-dev curl lsb-release libcppunit-dev python3-dev default-jdk r-base-dev r-cran-rcpp r-cran-rinside r-cran-inline libtool autotools-dev automake git cmake xmlstarlet'

env:
UPLOAD_ARTIFACT: false
jobs:

main:
Expand Down Expand Up @@ -61,7 +59,7 @@ jobs:
do
echo "$test"
echo "--------------------------------------"
sudo /opt/HPCCSystems/bin/unittests -e "$test"
/opt/HPCCSystems/bin/unittests -e "$test"
echo " "
done< <(/opt/HPCCSystems/bin/unittests -l | sort )
Expand All @@ -84,10 +82,9 @@ jobs:
compNamePart=$( find /opt/HPCCSystems/bin/ -iname "$component*" -type f -print | head -n 1);
compName=${compNamePart##*/}
echo "component: '${component}', compName: '${compName}', core: '${core}'"
sudo gdb --batch --quiet -ex "set interactive-mode off" -ex "echo \n Backtrace for all threads\n==========================" -ex "thread apply all bt" -ex "echo \n Registers:\n==========================\n" -ex "info reg" -ex "echo \n Disas:\n==========================\n" -ex "disas" -ex "quit" "/opt/HPCCSystems/bin/${compName}" $core 2>&1 | sudo tee "$core.trace" 2>&1
gdb --batch --quiet -ex "set interactive-mode off" -ex "echo \n Backtrace for all threads\n==========================" -ex "thread apply all bt" -ex "echo \n Registers:\n==========================\n" -ex "info reg" -ex "echo \n Disas:\n==========================\n" -ex "disas" -ex "quit" "/opt/HPCCSystems/bin/${compName}" $core 2>&1 | sudo tee "$core.trace" 2>&1
cp "$core.trace" /home/runner/HPCCSystems-regression/log/
done
echo "UPLOAD_ARTIFACT=true" >> $GITHUB_ENV
exit -1
fi
Expand Down

0 comments on commit ac44944

Please sign in to comment.