Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ on:
merge_group:
types: [checks_requested]
jobs:
test:
uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main
permissions:
contents: read
pull-requests: read
with:
bazel-target: 'test //src/...'
tests:
steps:
- name: "Run tests"
uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main
permissions:
contents: read
pull-requests: read
with:
bazel-target: 'test //src/... //tests/ut/...'
2 changes: 1 addition & 1 deletion src/launch_manager_daemon/src/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool initializeLCMDaemon(ProcessGroupManager& process_group_manager) {
LM_LOG_INFO() << "LCM started successfully";
return true;
} else {
LM_LOG_FATAL() << "LCM startup failed";
LM_LOG_FATAL() << "LCM startup failed!!!!";
return false;
}
}
Expand Down
Loading