From c4539a1bb51fbfd06e0c53d4857b800250a3adee Mon Sep 17 00:00:00 2001 From: William Roebuck Date: Thu, 22 Jan 2026 14:28:35 +0000 Subject: [PATCH 1/3] testing workflow steps --- .github/workflows/tests.yml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ee14515c..229d83f8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,20 @@ 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 Rust tests" + uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main + permissions: + contents: read + pull-requests: read + with: + bazel-target: 'test //src/...' + + - name: "Run Unit tests" + uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main + permissions: + contents: read + pull-requests: read + with: + bazel-target: 'test //tests/ut/...' From e4ea5eb4af9c69d1011e38a834f7e8b08ab4bbbd Mon Sep 17 00:00:00 2001 From: William Roebuck Date: Thu, 22 Jan 2026 14:31:16 +0000 Subject: [PATCH 2/3] test change --- src/launch_manager_daemon/src/main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launch_manager_daemon/src/main/main.cpp b/src/launch_manager_daemon/src/main/main.cpp index 94f35f14..c5c3a204 100644 --- a/src/launch_manager_daemon/src/main/main.cpp +++ b/src/launch_manager_daemon/src/main/main.cpp @@ -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; } } From b966bd78817a6485a729e83627ba7a76698bf268 Mon Sep 17 00:00:00 2001 From: William Roebuck Date: Thu, 22 Jan 2026 15:11:51 +0000 Subject: [PATCH 3/3] changed to one step --- .github/workflows/tests.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 229d83f8..27f31fb7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,18 +20,10 @@ on: jobs: tests: steps: - - name: "Run Rust tests" + - name: "Run tests" uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main permissions: contents: read pull-requests: read with: - bazel-target: 'test //src/...' - - - name: "Run Unit tests" - uses: eclipse-score/cicd-workflows/.github/workflows/tests.yml@main - permissions: - contents: read - pull-requests: read - with: - bazel-target: 'test //tests/ut/...' + bazel-target: 'test //src/... //tests/ut/...'