From e29138874efe90d63ecdd0e63d8a1a24758c007e Mon Sep 17 00:00:00 2001 From: ffrancis Date: Wed, 24 Dec 2025 16:32:25 +0530 Subject: [PATCH] Add steps to run AudioPlayback and AudioRecord tests Update test.yml to include steps for running AudioPlayback and AudioRecord tests. Signed-off-by: ffrancis --- .github/workflows/test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d34d24e..52b0f38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -112,6 +112,18 @@ jobs: save_result_as_artifact: true save_job_details: true + - name: Run QCOM Linux Testkit - AudioPlayback & AudioRecord + if: ${{ steps.submit_job.outcome == 'success' }} + run: | + set -euo pipefail + echo "Cloning qcom-linux-testkit..." + sudo git clone https://github.com/qualcomm-linux/qcom-linux-testkit qcom-linux-testkit + cd qcom-linux-testkit/Runner + echo "Running AudioPlayback..." + sudo ./run-test.sh AudioPlayback + echo "Running AudioRecord..." + sudo ./run-test.sh AudioRecord + - name: Update Summary if: success() || failure() run: |