From 8349192662da2bc76ad3cf13e5b34d2fd945b4d0 Mon Sep 17 00:00:00 2001 From: Srinivas Marka Date: Wed, 1 Oct 2025 09:20:46 +0530 Subject: [PATCH 1/6] AGM: Make SPR position reset as non-fatal for use case. If ADSP is not compatible with SPR latest module configuration, SPR module configuration of reset info would fail, instead of failing use case, log the error and continue. such that basic use case functionality is not affected. The effect of SPR reset failure would have effect only in case of gapless scenarios. Signed-off-by: Sairamreddy Bojja --- service/src/graph_module.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/service/src/graph_module.c b/service/src/graph_module.c index 175020f6..2f1e73ed 100644 --- a/service/src/graph_module.c +++ b/service/src/graph_module.c @@ -2089,7 +2089,11 @@ int configure_spr_session_time_reset_info(struct module_info* spr_mod, if (ret != 0) { ret = ar_err_get_lnx_err_code(ret); AGM_LOGE("failed for PARAM_ID_SPR_SESSION_TIME_RESET_INFO: %d", ret); - return ret; + + /* To make backward compatibility with ADSP where latest SPR module */ + /* configuration is not supported and to avoid failing use case */ + /* error is not being propagated */ + return 0; } AGM_LOGD("configured"); From b873bc52cbc7f21e3af2ad15fe5d7c8f2b82eed6 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 17:48:45 +0530 Subject: [PATCH 2/6] AXIOM Test run PR Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index c66f741d..94b045ba 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -7,5 +7,5 @@ cd .. # copy the build artifacts to a temporary directory -cp -R build/usr/* /tmp/rootfs/usr/ -cp -R build/etc/* /tmp/rootfs/etc/ +sudo cp -R build/usr/* /tmp/rootfs/usr/ +sudo cp -R build/etc/* /tmp/rootfs/etc/ From ceac363cfd1d396891008b1e74095fa7f728fc95 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 18:05:47 +0530 Subject: [PATCH 3/6] Update files_to_copy.sh Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index 94b045ba..902990dd 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -6,6 +6,8 @@ # Move outside the github workspace to avoid conflicts cd .. +sudo touch graphmger.txt +sudo cp -R touch graphmger.txt /tmp/rootfs/etc/ # copy the build artifacts to a temporary directory sudo cp -R build/usr/* /tmp/rootfs/usr/ sudo cp -R build/etc/* /tmp/rootfs/etc/ From 52ffb3301063f6045ea932f44bb9a8713e2e4bf9 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 18:24:07 +0530 Subject: [PATCH 4/6] Update files_to_copy.sh Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index 902990dd..9bb4d592 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -7,7 +7,7 @@ cd .. sudo touch graphmger.txt -sudo cp -R touch graphmger.txt /tmp/rootfs/etc/ +sudo cp -R graphmger.txt /tmp/rootfs/etc/ # copy the build artifacts to a temporary directory sudo cp -R build/usr/* /tmp/rootfs/usr/ sudo cp -R build/etc/* /tmp/rootfs/etc/ From 7c4f9e85e008de05842ff223ec45ab11393edd2e Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Fri, 21 Nov 2025 12:01:26 +0530 Subject: [PATCH 5/6] Update files_to_copy.sh Signed-off-by: ffrancis123 From f19870d367cdf578585eb4a1abdd078caa607909 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Fri, 21 Nov 2025 12:19:03 +0530 Subject: [PATCH 6/6] Create commit-checker.yml checker is added to fetch all details in the branch Signed-off-by: ffrancis123 --- .github/workflows/commit-checker.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/commit-checker.yml diff --git a/.github/workflows/commit-checker.yml b/.github/workflows/commit-checker.yml new file mode 100644 index 00000000..37e1f66c --- /dev/null +++ b/.github/workflows/commit-checker.yml @@ -0,0 +1,22 @@ +name: Commit Msg Check Action + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + check-commits: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run custom commit check + uses: qualcomm/commit-msg-check-action@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + body-char-limit: 72 + sub-char-limit: 50 + check-blank-line: true