Skip to content

Commit

Permalink
workflow: add interfaces dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bramoosterhuis committed Jan 15, 2024
1 parent 07cbea3 commit 5b17188
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/Build ThunderLibraries on Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
workflow_call:

jobs:
Thunder:
uses: rdkcentral/Thunder/.github/workflows/Build Thunder on Linux.yml@master
ThunderInterfaces:
uses: rdkcentral/ThunderInterfaces/.github/workflows/Build ThunderInterfaces on Linux.yml@master

ThunderLibraries:
needs: Thunder
needs: ThunderInterfaces

runs-on: ubuntu-latest

Expand Down Expand Up @@ -41,10 +41,16 @@ jobs:
path: Thunder
repository: rdkcentral/Thunder

- name: Checkout ThunderInterfaces
uses: actions/checkout@v3
with:
path: ThunderInterfaces
repository: rdkcentral/ThunderInterfaces

- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: Thunder-${{matrix.build_type}}-artifact
name: ThunderInterfaces-${{matrix.build_type}}-artifact
path: ${{matrix.build_type}}

- name: Unpack files
Expand Down

0 comments on commit 5b17188

Please sign in to comment.