From c1e07afd3539ad09334d806b6a52b07a0b16ba7a Mon Sep 17 00:00:00 2001 From: balav08 <54432605+balav08@users.noreply.github.com> Date: Mon, 13 Oct 2025 16:06:53 +0530 Subject: [PATCH 1/3] Update L1-tests.yml --- .github/workflows/L1-tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/L1-tests.yml b/.github/workflows/L1-tests.yml index a3f49a57..78600834 100755 --- a/.github/workflows/L1-tests.yml +++ b/.github/workflows/L1-tests.yml @@ -323,6 +323,9 @@ jobs: && cmake --install build/googletest + - name: Install GDB + run: sudo apt-get update && sudo apt-get install -y gdb + - name: Build mocks run: > cmake @@ -460,6 +463,19 @@ jobs: cmake --build build/entservices-casting -j8 && cmake --install build/entservices-casting + && + gdb -batch \ + -ex "file build/entservices-casting/PLUGIN_XCAST_test" \ + -ex "run" \ + -ex "bt" \ + -ex "quit" \ + > gdb_output.txt || true + + - name: Upload GDB Output + uses: actions/upload-artifact@v3 + with: + name: gdb-log + path: gdb_output.txt - name: Build entservices-testframework run: > From bfa800f529c91b53de9185a984a4b2450d5341f7 Mon Sep 17 00:00:00 2001 From: balav08 <54432605+balav08@users.noreply.github.com> Date: Mon, 13 Oct 2025 16:25:16 +0530 Subject: [PATCH 2/3] Update L1-tests.yml --- .github/workflows/L1-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/L1-tests.yml b/.github/workflows/L1-tests.yml index 78600834..25061615 100755 --- a/.github/workflows/L1-tests.yml +++ b/.github/workflows/L1-tests.yml @@ -472,7 +472,7 @@ jobs: > gdb_output.txt || true - name: Upload GDB Output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gdb-log path: gdb_output.txt From b4769daf72306a61d8fdc84e8d128499b610b8e2 Mon Sep 17 00:00:00 2001 From: balav08 <54432605+balav08@users.noreply.github.com> Date: Mon, 13 Oct 2025 18:55:49 +0530 Subject: [PATCH 3/3] Update L1-tests.yml --- .github/workflows/L1-tests.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/L1-tests.yml b/.github/workflows/L1-tests.yml index 25061615..1d51f9fc 100755 --- a/.github/workflows/L1-tests.yml +++ b/.github/workflows/L1-tests.yml @@ -463,19 +463,6 @@ jobs: cmake --build build/entservices-casting -j8 && cmake --install build/entservices-casting - && - gdb -batch \ - -ex "file build/entservices-casting/PLUGIN_XCAST_test" \ - -ex "run" \ - -ex "bt" \ - -ex "quit" \ - > gdb_output.txt || true - - - name: Upload GDB Output - uses: actions/upload-artifact@v4 - with: - name: gdb-log - path: gdb_output.txt - name: Build entservices-testframework run: > @@ -662,7 +649,20 @@ jobs: RdkServicesL1Test && cp -rf $(pwd)/rdkL1TestResults.json $GITHUB_WORKSPACE/rdkL1TestResultsWithValgrind.json && rm -rf $(pwd)/rdkL1TestResults.json + && + gdb -batch \ + -ex "file RdkServicesL1Test" \ + -ex "run" \ + -ex "bt" \ + -ex "quit" \ + > gdb_output.txt || true + - name: Upload GDB Output + uses: actions/upload-artifact@v4 + with: + name: gdb-log + path: gdb_output.txt + - name: Generate coverage if: ${{ matrix.coverage == 'with-coverage' && !env.ACT }} run: >