Skip to content

Commit 6e71320

Browse files
committed
try sigint in CI
1 parent 3324ac3 commit 6e71320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/debian-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ jobs:
151151
run: |
152152
source /opt/ros/${{ matrix.ros_distro }}/setup.bash
153153
ros2 run greenwave_monitor greenwave_monitor & echo $! > /tmp/gwm.pid
154-
sleep 3
154+
sleep 5
155155
ros2 node list | tee /tmp/nodes.txt
156156
grep -q greenwave_monitor /tmp/nodes.txt
157-
kill -TERM "$(cat /tmp/gwm.pid)" || true
157+
kill -INT "$(cat /tmp/gwm.pid)" || true
158158
wait "$(cat /tmp/gwm.pid)" || true
159159
shell: bash

0 commit comments

Comments
 (0)