From: Andrew Lewis Date: Mon, 11 Oct 2021 14:35:37 +0000 (+0200) Subject: [Test] CI: fix rspamd executable path X-Git-Tag: 3.1~59^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3932%2Fhead;p=thirdparty%2Frspamd.git [Test] CI: fix rspamd executable path --- diff --git a/.drone.yml b/.drone.yml index fb211609fd..3f7c5b5ff9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -194,7 +194,7 @@ steps: - > for core in $core_files; do - exe=$(gdb --batch -ex 'info proc mappings' -c $core | awk 'h {print $5; exit}; /objfile/ {h=1}'); + exe=$(gdb --batch -ex 'info proc mappings' -c $core | tail -1 | awk '{print $5}'); gdb --batch -ex 'bt' -c $core $exe; echo '---'; done - exit $EXIT_CODE