Skip to content

Commit

Permalink
Make sure all MacOS job names are unique (#286)
Browse files Browse the repository at this point in the history
Otherwise it clashes with the Linux required checks, even despite the workflow name being different
  • Loading branch information
VeithMetro authored Nov 22, 2024
1 parent a1f931a commit 4989975
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build ThunderClientLibraries on MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
branches: ["master"]

jobs:
Thunder:
Thunder_MacOS:
uses: rdkcentral/Thunder/.github/workflows/MacOS build template.yml@master

ThunderInterfaces:
needs: Thunder
ThunderInterfaces_MacOS:
needs: Thunder_MacOS
uses: rdkcentral/ThunderInterfaces/.github/workflows/MacOS build template.yml@master

ThunderClientLibraries:
needs: ThunderInterfaces
ThunderClientLibraries_MacOS:
needs: ThunderInterfaces_MacOS
uses: rdkcentral/ThunderClientLibraries/.github/workflows/MacOS build template.yml@master

0 comments on commit 4989975

Please sign in to comment.