Skip to content

Commit 0d3a689

Browse files
committed
remove test-result, and fix bug in smoke test
1 parent 80848f8 commit 0d3a689

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/debian-packages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,13 @@ jobs:
142142
curl -sSL https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/r2s_gw/requirements.txt > /tmp/requirements.txt
143143
python3 -m pip install -r /tmp/requirements.txt
144144
fi
145+
shell: bash
145146

146147
- name: Test r2s_gw execution
147148
run: |
148149
source /opt/ros/${{ matrix.ros_distro }}/setup.bash
149150
timeout 10s bash -lc "script -qfec 'ros2 run r2s_gw r2s_gw' /dev/null <<< \$'q'" || true
151+
shell: bash
150152

151153
- name: Test greenwave_monitor execution
152154
run: |
@@ -156,4 +158,5 @@ jobs:
156158
ros2 node list | tee /tmp/nodes.txt
157159
grep -q greenwave_monitor /tmp/nodes.txt
158160
kill -TERM "$(cat /tmp/gwm.pid)" || true
159-
wait "$(cat /tmp/gwm.pid)" || true
161+
wait "$(cat /tmp/gwm.pid)" || true
162+
shell: bash

.github/workflows/ros-tests.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,4 @@ jobs:
7373
with:
7474
name: test-results-${{ matrix.ros_distro }}
7575
path: build/*/test_results/**/*.xml
76-
retention-days: 7
77-
78-
- name: Publish test results
79-
uses: EnricoMi/publish-unit-test-result-action@v2
80-
if: always()
81-
with:
82-
files: build/*/test_results/*/*.xml
83-
check_name: "Test Results (${{ matrix.ros_distro }})"
84-
report_individual_runs: true
76+
retention-days: 7

0 commit comments

Comments
 (0)