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
22 changes: 22 additions & 0 deletions .github/workflows/commit-checker.yml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 4 additions & 2 deletions ci/files_to_copy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# Move outside the github workspace to avoid conflicts
cd ..

sudo touch graphmger.txt
sudo cp -R graphmger.txt /tmp/rootfs/etc/
# 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/
6 changes: 5 additions & 1 deletion service/src/graph_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
Loading