Skip to content

Commit 083a816

Browse files
authored
fix(hepa-uv): remove hepa-uv simulators so they don't block CI. (#746)
* add NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init) to PushTipPresenceNotification, and GetMotorUsageResponse so lint does not fail
1 parent edb3207 commit 083a816

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build-simulators.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
gantry-y,
2525
gripper,
2626
head,
27-
hepa-uv,
2827
pipettes-single,
2928
pipettes-multi,
3029
pipettes-96,

CMakePresets.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,7 @@
241241
"pipettes-single-simulator",
242242
"pipettes-multi-simulator",
243243
"pipettes-96-simulator",
244-
"gripper-simulator",
245-
"hepa-uv-simulator"
244+
"gripper-simulator"
246245
]
247246
},
248247
{
@@ -260,8 +259,7 @@
260259
"pipettes-single-simulator",
261260
"pipettes-multi-simulator",
262261
"pipettes-96-simulator",
263-
"gripper-simulator",
264-
"hepa-uv-simulator"
262+
"gripper-simulator"
265263
]
266264
}
267265
]

include/can/core/messages.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,6 +1235,7 @@ struct BindSensorOutputResponse
12351235

12361236
using TipStatusQueryRequest = Empty<MessageId::get_tip_status_request>;
12371237

1238+
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
12381239
struct PushTipPresenceNotification
12391240
: BaseMessage<MessageId::tip_presence_notification> {
12401241
uint32_t message_index;
@@ -1474,6 +1475,7 @@ struct SetGripperErrorToleranceRequest
14741475

14751476
using GetMotorUsageRequest = Empty<MessageId::get_motor_usage_request>;
14761477

1478+
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
14771479
struct GetMotorUsageResponse
14781480
: BaseMessage<MessageId::get_motor_usage_response> {
14791481
uint32_t message_index;

0 commit comments

Comments
 (0)