summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2021-10-11 16:35:37 +0200
committerAndrew Lewis <nerf@judo.za.org>2021-10-11 16:35:37 +0200
commitb97b24a33c0d24e33f85b2fd9224dba0fadea98c (patch)
tree2d829dfd5c2ba0ab567dd27fb8068bdf6ccfc51a /.drone.yml
parent2ce612ba70309ab8024f878d33ade87565eca394 (diff)
downloadrspamd-b97b24a33c0d24e33f85b2fd9224dba0fadea98c.tar.gz
rspamd-b97b24a33c0d24e33f85b2fd9224dba0fadea98c.zip
[Test] CI: fix rspamd executable path
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml
index fb211609f..3f7c5b5ff 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