-
Notifications
You must be signed in to change notification settings - Fork 2
280 lines (236 loc) · 9.49 KB
/
Copy pathci.yml
File metadata and controls
280 lines (236 loc) · 9.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
repository_dispatch:
types: [ros2_medkit_updated]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check for trailing whitespace
run: |
! git grep -I --line-number --perl-regexp '\s+$' -- \
'*.md' '*.py' '*.yaml' '*.yml' || \
(echo "Found trailing whitespace in the files above" && exit 1)
- name: Check shell scripts with shellcheck
run: |
sudo apt-get update && sudo apt-get install -y shellcheck
find . \( -name "*.sh" -o -name "*.bash" \) -type f | xargs shellcheck
- name: Validate YAML files
run: |
sudo apt-get update && sudo apt-get install -y yamllint
YAMLLINT_CONFIG="{extends: relaxed, rules: {line-length: {max: 120}}}"
find . \( -name "*.yaml" -o -name "*.yml" \) -type f | xargs yamllint -d "$YAMLLINT_CONFIG"
build-and-test-sensor:
runs-on: ubuntu-24.04
steps:
- name: Show triggering source
if: github.event_name == 'repository_dispatch'
run: |
SHA="${{ github.event.client_payload.sha }}"
RUN_URL="${{ github.event.client_payload.run_url }}"
echo "## Triggered by ros2_medkit" >> "$GITHUB_STEP_SUMMARY"
echo "- Commit: \`${SHA:-unknown}\`" >> "$GITHUB_STEP_SUMMARY"
if [ -n "$RUN_URL" ]; then
echo "- Run: [View triggering run]($RUN_URL)" >> "$GITHUB_STEP_SUMMARY"
else
echo "- Run: (URL not provided)" >> "$GITHUB_STEP_SUMMARY"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and start sensor_diagnostics demo
working-directory: demos/sensor_diagnostics
run: docker compose --profile ci up -d --build sensor-demo-ci
- name: Run smoke tests
run: ./tests/smoke_test.sh
- name: Show container logs on failure
if: failure()
working-directory: demos/sensor_diagnostics
run: docker compose --profile ci logs sensor-demo-ci --tail=200
- name: Teardown
if: always()
working-directory: demos/sensor_diagnostics
run: docker compose --profile ci down
build-and-test-turtlebot:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and start turtlebot3 demo
working-directory: demos/turtlebot3_integration
run: docker compose --profile ci up -d --build turtlebot3-demo-ci
- name: Run smoke tests
run: ./tests/smoke_test_turtlebot3.sh
- name: Show container logs on failure
if: failure()
working-directory: demos/turtlebot3_integration
run: docker compose --profile ci logs turtlebot3-demo-ci --tail=200
- name: Teardown
if: always()
working-directory: demos/turtlebot3_integration
run: docker compose --profile ci down
build-and-test-moveit:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and start moveit demo
working-directory: demos/moveit_pick_place
run: docker compose --profile ci up -d --build moveit-demo-ci
- name: Run smoke tests
run: ./tests/smoke_test_moveit.sh
- name: Show container logs on failure
if: failure()
working-directory: demos/moveit_pick_place
run: docker compose --profile ci logs moveit-demo-ci --tail=200
- name: Teardown
if: always()
working-directory: demos/moveit_pick_place
run: docker compose --profile ci down
build-and-test-multi-ecu:
needs: lint
runs-on: ubuntu-24.04
steps:
- name: Show triggering source
if: github.event_name == 'repository_dispatch'
run: |
SHA="${{ github.event.client_payload.sha }}"
RUN_URL="${{ github.event.client_payload.run_url }}"
echo "## Triggered by ros2_medkit" >> "$GITHUB_STEP_SUMMARY"
echo "- Commit: \`${SHA:-unknown}\`" >> "$GITHUB_STEP_SUMMARY"
if [ -n "$RUN_URL" ]; then
echo "- Run: [View triggering run]($RUN_URL)" >> "$GITHUB_STEP_SUMMARY"
else
echo "- Run: (URL not provided)" >> "$GITHUB_STEP_SUMMARY"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and start multi-ECU demo
working-directory: demos/multi_ecu_aggregation
run: docker compose --profile ci up -d --build perception-ecu-ci planning-ecu-ci actuation-ecu-ci
- name: Run smoke tests
run: ./tests/smoke_test_multi_ecu.sh
- name: Show perception ECU logs on failure
if: failure()
working-directory: demos/multi_ecu_aggregation
run: docker compose --profile ci logs perception-ecu-ci --tail=200
- name: Show planning ECU logs on failure
if: failure()
working-directory: demos/multi_ecu_aggregation
run: docker compose --profile ci logs planning-ecu-ci --tail=200
- name: Show actuation ECU logs on failure
if: failure()
working-directory: demos/multi_ecu_aggregation
run: docker compose --profile ci logs actuation-ecu-ci --tail=200
- name: Teardown
if: always()
working-directory: demos/multi_ecu_aggregation
run: docker compose --profile ci down
build-and-test-ota:
needs: lint
runs-on: ubuntu-24.04
steps:
- name: Show triggering source
if: github.event_name == 'repository_dispatch'
run: |
SHA="${{ github.event.client_payload.sha }}"
RUN_URL="${{ github.event.client_payload.run_url }}"
echo "## Triggered by ros2_medkit" >> "$GITHUB_STEP_SUMMARY"
echo "- Commit: \`${SHA:-unknown}\`" >> "$GITHUB_STEP_SUMMARY"
if [ -n "$RUN_URL" ]; then
echo "- Run: [View triggering run]($RUN_URL)" >> "$GITHUB_STEP_SUMMARY"
else
echo "- Run: (URL not provided)" >> "$GITHUB_STEP_SUMMARY"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and start OTA demo
working-directory: demos/ota_nav2_sensor_fix
run: docker compose up -d --build
- name: Run smoke tests
run: ./tests/smoke_test_ota.sh
- name: Show gateway logs on failure
if: failure()
working-directory: demos/ota_nav2_sensor_fix
run: docker compose logs gateway --tail=200
- name: Show update server logs on failure
if: failure()
working-directory: demos/ota_nav2_sensor_fix
run: docker compose logs ota_update_server --tail=200
- name: Teardown
if: always()
working-directory: demos/ota_nav2_sensor_fix
run: docker compose down
# Separate job from build-and-test-ota: this one publishes /goal_pose,
# waits for the controller to actually try to drive, asserts the
# reactive SCAN_PHANTOM_RETURN fault appears, and only then runs the
# OTA swap. Catches regressions in the demo narrative (broken_lidar
# subscribing /cmd_vel, fault_manager debounce, fixed_lidar not
# reporting). Slower than the API-only smoke job because it has to
# wait for nav2 lifecycle to settle and for /cmd_vel to actually fire,
# so it's split out and can fail in isolation without blocking the
# quick OTA-endpoint check.
ota-demo-narrative:
needs: lint
runs-on: ubuntu-24.04
steps:
- name: Show triggering source
if: github.event_name == 'repository_dispatch'
run: |
SHA="${{ github.event.client_payload.sha }}"
RUN_URL="${{ github.event.client_payload.run_url }}"
echo "## Triggered by ros2_medkit" >> "$GITHUB_STEP_SUMMARY"
echo "- Commit: \`${SHA:-unknown}\`" >> "$GITHUB_STEP_SUMMARY"
if [ -n "$RUN_URL" ]; then
echo "- Run: [View triggering run]($RUN_URL)" >> "$GITHUB_STEP_SUMMARY"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Build artifacts (catalog + tarballs) inside ros:jazzy
working-directory: demos/ota_nav2_sensor_fix
run: |
docker run --rm \
-v "$PWD":/work \
-w /work \
ros:jazzy \
bash -c '
set -eu
apt-get update
apt-get install -y --no-install-recommends \
python3-colcon-common-extensions \
python3-catkin-pkg \
python3-venv \
python3-pip \
build-essential \
cmake \
ros-jazzy-rclcpp \
ros-jazzy-sensor-msgs \
ros-jazzy-visualization-msgs
cd scripts
python3 -m venv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install pytest
cd ..
./scripts/build_artifacts.sh
'
sudo chown -R "$USER:$USER" .
- name: Build and start OTA demo
working-directory: demos/ota_nav2_sensor_fix
run: docker compose up -d --build
- name: Run demo narrative smoke
run: ./tests/smoke_test_demo_narrative.sh
- name: Show gateway logs on failure
if: failure()
working-directory: demos/ota_nav2_sensor_fix
run: docker compose logs gateway --tail=300
- name: Teardown
if: always()
working-directory: demos/ota_nav2_sensor_fix
run: docker compose down