Fix codestyle check pipeline (#178)

* change continue-on-error to false

* add manual trigger

* revert manual trigger

* test fail checkstyle

* restore prev trigger and settings

* fix syntax

* fix exit code for codestyle

* try to break pipeline

* restore pipeline

Co-authored-by: aanper <mail@s3f.ru>
This commit is contained in:
rusdacent
2020-10-15 19:50:21 +03:00
committed by GitHub
parent d33e16dae1
commit 7570ac08a9
11 changed files with 27 additions and 28 deletions

View File

@@ -29,8 +29,8 @@ GUIEvent* gui_event_alloc() {
assert(gui_event->mqueue);
// Input
gui_event->input_event_record =
furi_open_deprecated("input_events", false, false, gui_event_input_events_callback, NULL, gui_event);
gui_event->input_event_record = furi_open_deprecated(
"input_events", false, false, gui_event_input_events_callback, NULL, gui_event);
assert(gui_event->input_event_record != NULL);
// Lock mutex
gui_event->lock_mutex = osMutexNew(NULL);
@@ -58,7 +58,8 @@ void gui_event_unlock(GUIEvent* gui_event) {
}
void gui_event_messsage_send(GUIEvent* gui_event, GUIMessage* message) {
assert(gui_event); assert(message);
assert(gui_event);
assert(message);
osMessageQueuePut(gui_event->mqueue, message, 0, 0);
}