Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 6 additions & 1 deletion .github/workflows/L1-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: L1-tests

on:
workflow_call:
inputs:
caller_branch:
required: false
type: string
secrets:
RDKCM_RDKE:
required: true
Expand Down Expand Up @@ -69,6 +73,7 @@ jobs:
- name: ACK External Trigger
run: |
echo "Message: External Trigger Received for L1 Tests"
echo "Branch: ${{ inputs.caller_branch || github.head_ref || github.ref_name }}"

- name: Set up CMake
uses: jwlawson/[email protected]
Expand Down Expand Up @@ -125,7 +130,7 @@ jobs:
with:
repository: rdkcentral/entservices-inputoutput
path: entservices-inputoutput
ref: develop
ref: ${{ inputs.caller_branch || github.head_ref || github.ref_name }}

- name: Checkout googletest
if: steps.cache.outputs.cache-hit != 'true'
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/L2-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: L2-tests

on:
workflow_call:
inputs:
caller_branch:
required: false
type: string
secrets:
RDKCM_RDKE:
required: true
Expand Down Expand Up @@ -39,6 +43,7 @@ jobs:
- name: ACK External Trigger
run: |
echo "Message: External Trigger Received for L2 Tests"
echo "Branch: ${{ inputs.caller_branch || github.head_ref || github.ref_name }}"

- name: Set up CMake
uses: jwlawson/[email protected]
Expand Down Expand Up @@ -87,7 +92,7 @@ jobs:
with:
repository: rdkcentral/entservices-inputoutput
path: entservices-inputoutput
ref: develop
ref: ${{ inputs.caller_branch || github.head_ref || github.ref_name }}

- name: Checkout entservices-testframework
uses: actions/checkout@v3
Expand Down
Loading